00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef INC_GVARS_VECTOR_H
00021 #define INC_GVARS_VECTOR_H
00022 #include <vector>
00023 #include <set>
00024 #include <gvars3/serialize.h>
00025
00026
00027 namespace GVars3{ namespace serialize {
00028
00029
00030
00031
00032
00033 template<class C>std::string to_string(const std::set<C>& s)
00034 {
00035 std::ostringstream o;
00036 typename std::set<C>::const_iterator i;
00037
00038 for(i=s.begin();i != s.end(); i++)
00039 {
00040 if(i != s.begin())
00041 o << " ";
00042 o << *i;
00043 }
00044
00045 return o.str();
00046 }
00047
00048 template<class C> int from_string(const std::string& s, std::set<C>& o)
00049 {
00050 std::istringstream i(s);
00051 using namespace tag;
00052
00053 while(1)
00054 {
00055 C c;
00056 i >> c;
00057
00058 if(i)
00059 o.insert(o.end(), c);
00060 else
00061 return check_stream(i);
00062 }
00063 }
00064
00065
00066
00067
00068
00069 template<class C>std::string to_string(const std::vector<C>& s)
00070 {
00071 std::ostringstream o;
00072 typename std::vector<C>::const_iterator i;
00073
00074 for(i=s.begin();i != s.end(); i++)
00075 {
00076 if(i != s.begin())
00077 o << " ";
00078 o << *i;
00079 }
00080
00081 return o.str();
00082 }
00083
00084 template<class C> int from_string(const std::string& s, std::vector<C>& o)
00085 {
00086 std::istringstream i(s);
00087 using namespace tag;
00088
00089 while(1)
00090 {
00091 C c;
00092 i >> c;
00093
00094 if(i)
00095 o.insert(o.end(), c);
00096 else
00097 return check_stream(i);
00098 }
00099 }
00100 }}
00101
00102 #include <gvars3/instances.h>
00103 #endif
00104