inlib  1.2.0
/Users/barrand/private/dev/softinex/old/inexlib-1.2/inlib/inlib/out
Go to the documentation of this file.
00001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
00002 // See the file inlib.license for terms.
00003 
00004 #ifndef inlib_out
00005 #define inlib_out
00006 
00007 #include <vector>
00008 #include <string>
00009 #include <ostream>
00010 
00011 namespace inlib {
00012 
00013 inline void out(std::ostream& a_out,const std::vector<std::string>& a_vec) {
00014   std::vector<std::string>::const_iterator it;
00015   for(it=a_vec.begin();it!=a_vec.end();++it) {
00016     a_out << *it << std::endl;
00017   }
00018 }
00019 
00020 }
00021 
00022 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines