#ifndef SingleMtxDest_INCLUDED #define SingleMtxDest_INCLUDED #include #ifdef WIN32 #ifdef DOEXPORT_SCRIPT #define EXPORT_SCRIPT __declspec(dllexport) #else #define EXPORT_SCRIPT #endif #else #define EXPORT_SCRIPT #endif class SingleMtxDest : public bncs_script_helper { public: SingleMtxDest( bncs_client_callback * parent, const char* path ); virtual ~SingleMtxDest(); void buttonCallback( buttonNotify *b ); int revertiveCallback( revertiveNotify * r ); void databaseCallback( revertiveNotify * r ); bncs_string parentCallback( parentNotify *p ); void timerCallback( int ); private: bncs_string m_instance; bncs_string myBtnDeselectState; bncs_string myBtnSelectState; bncs_string myUMDstatesheet; int myMatrixID; int myDestID; int myNamesDatabase; bool iAmSelected; }; #endif // SingleMtxDest_INCLUDED