Richard Chapman 3840720b82 HPCC-25107 Excessive tracing of plugin loads преди 4 години
..
CMakeLists.txt 17faf177ea HPCC-12635 Add example plugin преди 9 години
README.md 08cd938a0d Update README.md преди 8 години
exampleplugin.cpp 3840720b82 HPCC-25107 Excessive tracing of plugin loads преди 4 години
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)