4#include "zipios++/zipios-config.h"
12static const char separator =
'/' ;
15void 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 ) ;
22inline const T& min(
const T& a,
const T& b ) {
23 return b < a ? b : a ;