Gavin Halliday 16d67414b1 HPCC-8983 Add support for -fvisibility to reduce dll exports пре 9 година
..
CMakeLists.txt 17faf177ea HPCC-12635 Add example plugin пре 9 година
README.md 08cd938a0d Update README.md пре 8 година
exampleplugin.cpp 17faf177ea HPCC-12635 Add example plugin пре 9 година
exampleplugin.hpp 16d67414b1 HPCC-8983 Add support for -fvisibility to reduce dll exports пре 8 година
lib_exampleplugin.ecllib b9871a00e1 HPCC-15887 Add time attribute to various standard library functions пре 8 година

README.md

ECL Example Plugin

This is the ECL plugin to utilize the (add plugin name). It utilizes the (Add related API details).

Installation and Dependencies

To build the plugin with the HPCC-Platform, is required.

sudo apt-get install <dependency>

Note: Add notes such as min versions etc.

Getting started

(Add relevant content)

The Actual Plugin

(Add relevant content)

###Sub Section

(Add details)

###An ECL Example

IMPORT example-plugin FROM lib_example-plugin;
IMPORT Wrapper FROM lib_example-plugin;

myWrapper := Wrapper('param1', 'param2');

UNSIGNED4 param3 := 7;
example1 := myWrapper.func1(param3);
example2 := myWrapper.func2('MaKEALLlOWeRCASe');

OUTPUT(example1);
OUTPUT(example2);

Yields the results '8' and 'makealllowercase'

etc etc.

Behaviour and Implementation Details

(Add relevant content)