00001 #ifndef __WSA_STARTUP_SINGLETON_H 00002 #define __WSA_STARTUP_SINGLETON_H 00003 00004 class WSAStartupSingleton 00005 { 00006 public: 00007 WSAStartupSingleton(); 00008 ~WSAStartupSingleton(); 00009 static void AddRef(void); 00010 static void Deref(void); 00011 00012 protected: 00013 static int refCount; 00014 }; 00015 00016 #endif