1 // Define the DC_Singleton here
3 #ifndef __TEST_SINGLETON_H
4 #define __TEST_SINGLETON_H
6 #include "ace/Synch_Traits.h"
13 static DC_Singleton
*instance ();
16 static ACE_SYNCH_MUTEX lock_
;
17 static DC_Singleton
*instance_
;
20 #endif /* __TEST_SINGLETON_H */