00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "../idl/Object.hh"
00021
00022 #include <string>
00023
00029 namespace fbfs {
00030 class Object;
00031 };
00032
00042 class fbfs::Object {
00043 public:
00049 static string Obj2string(const Obj &obj);
00050
00056 static Obj *string2Obj(const string &s);
00057
00063 static string Obj_prop2string(const Obj_prop &obj);
00064
00070 static Obj_prop string2Obj_prop(const string &s);
00071
00077 static string Obj_id2string(const Obj_id &obj);
00078
00084 static Obj_id string2Obj_id(const string &s);
00085
00091 static string Obj_ts2string(const Obj_ts &obj);
00092
00098 static Obj_ts string2Obj_ts(const string &s);
00099
00100 static bool cmp_ts( const Obj_ts &uno, const Obj_ts &due);
00101 };
00102