00001 #ifndef COMMONS_UTILITY_H 00002 #define COMMONS_UTILITY_H 00003 00005 #define NONCOPYABLE(type) \ 00006 private: \ 00007 type(const type&); \ 00008 void operator=(const type&); 00009 00012 #define EXPAND(type) 00013 00014 #endif