/* This file is part of Mapnik (c++ mapping toolkit) * Copyright (C) 2005 Artem Pavlenko * * Mapnik is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ //$Id: params.hpp 39 2005-04-10 20:39:53Z pavlenko $ #ifndef PARAMS_HPP #define PARAMS_HPP #include #include #include #include #include #include #include #include #include #include #include namespace mapnik { typedef std::pair parameter; typedef std::map param_map; class parameters : public param_map { friend class boost::serialization::access; template void save(Archive & ar, const unsigned int /*version*/) const { const size_t size = param_map::size(); ar & boost::serialization::make_nvp("count",size); param_map::const_iterator itr; for (itr=param_map::begin();itr!=param_map::end();++itr) { ar & boost::serialization::make_nvp("name",itr->first); ar & boost::serialization::make_nvp("value",itr->second); } } template void load(Archive & ar, const unsigned int /*version*/) { size_t size; ar & boost::serialization::make_nvp("size",size); for (size_t i=0;isecond; } return std::string(); } }; } BOOST_CLASS_IMPLEMENTATION(mapnik::parameter, boost::serialization::object_serializable) BOOST_CLASS_TRACKING(mapnik::parameter, boost::serialization::track_never) BOOST_CLASS_IMPLEMENTATION(mapnik::parameters, boost::serialization::object_serializable) BOOST_CLASS_TRACKING(mapnik::parameters, boost::serialization::track_never) #endif //PARAMS_HPP