00001 // file : ace/RMCast/Bits.h 00002 // author : Boris Kolpackov <boris@kolpackov.net> 00003 // cvs-id : Bits.h,v 1.5 2005/03/17 17:30:53 boris Exp 00004 00005 #ifndef ACE_RMCAST_BITS_H 00006 #define ACE_RMCAST_BITS_H 00007 00008 #include "ace/Auto_Ptr.h" 00009 #include "ace/Thread_Mutex.h" 00010 #include "ace/Condition_T.h" 00011 #include "ace/Synch_Traits.h" 00012 00013 namespace ACE_RMCast 00014 { 00015 typedef ACE_SYNCH_MUTEX Mutex; 00016 typedef ACE_Guard<Mutex> Lock; 00017 typedef ACE_Condition<Mutex> Condition; 00018 00019 // tmp 00020 // 00021 //using std::cerr; 00022 //using std::endl; 00023 } 00024 00025 00026 #endif // ACE_RMCAST_BITS_H