auditing performed, made some changes like removed std, or corrected the name of the file, and in come cases added the licence text where it was missing --gv

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1220 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
jinx 2006-09-17 01:19:52 +00:00
parent 08a7b4162e
commit 85982217db
4 changed files with 33 additions and 18 deletions

View file

@ -1,4 +1,4 @@
// src/xml_serializer_factory.hh - Copyright 2005, 2006, University
// plugins/xmlsave/src/xml_serializer_factory.hh - Copyright 2005, 2006, University
// of Padova, dept. of Pure and Applied
// Mathematics
//
@ -122,6 +122,6 @@ namespace sgpem
// to reslove sub requests
TempMap _temp_map;
};
}
} //~ namespace
#endif
#endif //~ XML_SERIALIZER_FACTORY_HH

View file

@ -1,4 +1,4 @@
// src/backend/serialize_visitor.cc - Copyright 2005, 2006, University
// plugins/xmlsave/src/xml_visitor.cc - Copyright 2005, 2006, University
// of Padova, dept. of Pure and Applied
// Mathematics
//
@ -37,10 +37,12 @@ using namespace sgpem;
XMLVisitor::XMLVisitor(xmlNodePtr current)
: _current(current)
{}
{
}
XMLVisitor::~XMLVisitor()
{}
{
}
void XMLVisitor::from_resource(const Resource& obj) throw(SerializerError)
{
@ -91,11 +93,6 @@ void XMLVisitor::from_resource(const Resource& obj, const Glib::ustring& key) th
}
void XMLVisitor::from_history(xmlNodePtr parent, const History& hist) throw(SerializerError)
{
if (parent != NULL)

View file

@ -1,4 +1,4 @@
// src/backend/serialize_visitor.hh - Copyright 2005, 2006, University
// plugin/xmlsave/src/xml_visitor.hh - Copyright 2005, 2006, University
// of Padova, dept. of Pure and Applied
// Mathematics
//
@ -127,7 +127,7 @@ namespace sgpem
xmlNodePtr _current;
};
}
} // ~namespace
#endif
#endif //~ XML_VISITOR_HH