00001 #ifndef toast_global_hpp_INCLUDED
00002 #define toast_global_hpp_INCLUDED
00003
00010 namespace toast {
00011
00040 template <typename T>
00041 T& global()
00042 {
00043 static T t;
00044 return t;
00045 }
00046
00048 }
00049
00101 #endif // toast_global_hpp_INCLUDED