#ifndef EXAMPLE_ARRAY_IMPL_HPP #define EXAMPLE_ARRAY_IMPL_HPP #include namespace Example { class ExampleArrayImpl : public Component1ComponentBase { public: // Only called by derived class ExampleArrayImpl(const char* compName); ~ExampleArrayImpl(); void init(NATIVE_INT_TYPE queueDepth); private: void ExArrayIn_handler(FwIndexType portNum, const Example::SubNameSpace::ArrayType& array1, const Example::ArrSerial& serial1); void ArrayIn_handler(FwIndexType portNum, const Example::SubNameSpace::ArrayType& array1, const Example::ArrSerial& serial1); }; }; #endif