00001 #ifndef GENERAL_UTILITY_FUNCTIONS_HEADER_INCLUDED
00002 #define GENERAL_UTILITY_FUNCTIONS_HEADER_INCLUDED
00003
00004 template <typename DataType>
00005 void swap(DataType & x, DataType & y) {
00006 DataType t = x;
00007 x = y;
00008 y = t;
00009 return;
00010 }
00011
00012 #endif