#ifndef __TESTCLASS_HPP__ #define __TESTCLASS_HPP__ #include #include class Testclass { public: Testclass(); ~Testclass(); bool Init(); bool Server_Add(); // I would like to have these 3 Functions inside the Testclass, and the refering 3 Functions at Testclass.cpp (Lines 11-54) away, // but i don't know how to do this. // I tried it with the Help of boost::bind but i didn't get something working out of it // int ipc_server_add( void *data, int type, void *event ); // int ipc_server_del( void *data, int type, void *event ); // int ipc_server_data( void *data, int type, void *event ) private: Ecore_Ipc_Server *server; }; #endif // __TESTCLASS_HPP__