00001 #ifndef CONNECTORSINGLETON_H 00002 #define CONNECTORSINGLETON_H 00003 #include "Connector.h" 00004 class ConnectorSingleton { 00005 public: 00006 static Connector* getConnector() { return connector; } 00007 void setConnector(Connector * c); 00008 private: 00009 static Connector * connector; 00010 }; 00011 #endif
1.2.18