1 #ifndef ZIPIOS_COMMON_H
2 #define ZIPIOS_COMMON_H
4 #include "zipios++/zipios-config.h"
12 static const char separator =
'/' ;
14 template<
class Type >
15 void operator += ( vector< Type > &v1,
const vector< Type > &v2 ) {
16 typename std::vector<Type>::const_iterator cit ;
17 for ( cit = v2.begin() ; cit != v2.end() ; ++cit )
18 v1.push_back( *cit ) ;
22 inline const T& min(
const T& a,
const T& b ) {
23 return b < a ? b : a ;