00001 #ifndef CONNECTORSINGLETON_H 00002 #define CONNECTORSINGLETON_H 00003 #include "Connector.h" 00008 class ConnectorSingleton { 00009 public: 00013 static Connector* getConnector() { return connector; } 00017 void setConnector(Connector * c); 00018 private: 00019 static Connector * connector; 00020 }; 00021 #endif