zipios_common.h
Go to the documentation of this file.00001 #ifndef ZIPIOS_COMMON_H
00002 #define ZIPIOS_COMMON_H
00003
00004 #include "zipios-config.h"
00005
00006 #include <vector>
00007
00008 namespace zipios {
00009
00010 using std::vector;
00011
00012 static const char separator = '/' ;
00013
00014 template< class Type >
00015 void operator += ( vector< Type > &v1, const vector< Type > &v2 ) {
00016 typename std::vector<Type>::const_iterator cit ;
00017 for ( cit = v2.begin() ; cit != v2.end() ; ++cit )
00018 v1.push_back( *cit ) ;
00019 }
00020
00021 template< class T >
00022 inline const T& min( const T& a, const T& b ) {
00023 return b < a ? b : a ;
00024 }
00025
00026
00027 }
00028
00029 #endif
00030
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052