// Copyright (C) 2010, Guy Barrand. All rights reserved. // See the file tools.license for terms. #ifndef tools_waxml_begend #define tools_waxml_begend #include #include "../sout" #include "../version" namespace tools { namespace waxml { inline void begin(std::ostream& a_writer){ // Header : a_writer << "" << std::endl; a_writer << "" << std::endl; std::string sAIDA_VERSION("3.2.1"); a_writer << "" << std::endl; a_writer << " " << std::endl; } inline void end(std::ostream& a_writer){ a_writer << "" << std::endl; } }} #endif