#ifndef TakeA_INCLUDED #define TakeA_INCLUDED #include #ifdef WIN32 #ifdef DOEXPORT_SCRIPT #define EXPORT_SCRIPT __declspec(dllexport) #else #define EXPORT_SCRIPT #endif #else #define EXPORT_SCRIPT #endif class TakeA : public bncs_script_helper { public: TakeA( bncs_client_callback * parent, const char* path ); virtual ~TakeA(); void buttonCallback( buttonNotify *b ); int revertiveCallback( revertiveNotify * r ); void databaseCallback( revertiveNotify * r ); bncs_string parentCallback( parentNotify *p ); void timerCallback( int ); private: bncs_string m_myParam; bncs_string m_instance; bncs_string m_src_id; bncs_string m_dest_id; int src_no; int dest_no; bool valid_source; bool valid_dest; bool take_enabled; // Local functions void check_enableTake(void); }; #endif // TakeA_INCLUDED