OSDN Git Service

Change the webbrowser commnad gnome-open to firefox.
[fukui-no-namari/dialektos.git] / src / history_item.hxx
1 /*
2  * Copyright (C) 2009 by Aiwota Programmer
3  * aiwotaprog@tetteke.tk
4  *
5  * This file is part of Dialektos.
6  *
7  * Dialektos is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * Dialektos is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Dialektos.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef HISTORY_ITEM_HXX
22 #define HISTORY_ITEM_HXX
23
24 #include <boost/serialization/access.hpp>
25 #include <boost/serialization/nvp.hpp>
26 #include <boost/date_time/posix_time/posix_time.hpp>
27 #include <string>
28
29
30 namespace dialektos {
31
32 namespace history {
33
34
35 struct Item {
36   typedef std::string UriType;
37   typedef std::string NameType;
38   typedef boost::posix_time::ptime TimeType;
39
40   UriType uri_;
41   NameType name_;
42   TimeType time_;
43 private:
44   friend class boost::serialization::access;
45   BOOST_SERIALIZATION_SPLIT_MEMBER();
46
47   template <typename ArchiveType>
48   void  load(ArchiveType& ar, const unsigned int version) {
49     ar & boost::serialization::make_nvp("Name", name_);
50     ar & boost::serialization::make_nvp("URI", uri_);
51     std::string iso;
52     ar & boost::serialization::make_nvp("Time", iso);
53     time_ = boost::posix_time::from_iso_string(iso);
54   }
55   template <typename ArchiveType>
56   void save(ArchiveType& ar, const unsigned int version) const {
57     ar & boost::serialization::make_nvp("Name", name_);
58     ar & boost::serialization::make_nvp("URI", uri_);
59     const std::string iso = boost::posix_time::to_iso_string(time_);
60     ar & boost::serialization::make_nvp("Time", iso);
61   }
62
63 };
64
65
66 } // namespace history
67
68 } // namespace dialektos
69
70 #endif