00001 /* 00002 * SomeInternalFunctionExample.h 00003 * 00004 * Created on: Oct 28, 2013 00005 * Author: blackpc 00006 */ 00007 00008 #ifndef SOMEINTERNALFUNCTIONEXAMPLE_H_ 00009 #define SOMEINTERNALFUNCTIONEXAMPLE_H_ 00010 00011 00012 #include <scriptable_monitor/InternalFunction.h> 00013 00014 class SomeFunction : public InternalFunction { 00015 public: 00016 00017 virtual string functionName(); 00018 00019 protected: 00020 virtual void process(Parameters& input, Parameters& output); 00021 }; 00022 00023 00024 #endif /* SOMEINTERNALFUNCTIONEXAMPLE_H_ */