C++ Utils  0.1
utils/common.h
Go to the documentation of this file.
00001 
00037 #ifndef UTILS_COMMON_H
00038 #define UTILS_COMMON_H
00039 
00040 namespace utils
00041 {
00042 
00043 template<typename T>
00044 void swap(T& a, T& b)
00045 {
00046         T tmp = a;
00047         a = b;
00048         b = tmp;
00049 }
00050 
00051 }
00052 
00053 #endif // UTILS_COMMON_H
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Defines