EPUBManifest.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libepubgen project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
9 
10 #ifndef INCLUDED_EPUBMANIFEST_H
11 #define INCLUDED_EPUBMANIFEST_H
12 
13 #include <string>
14 #include <utility>
15 
16 #include <boost/unordered_map.hpp>
17 
18 namespace libepubgen
19 {
20 
21 class EPUBPath;
22 class EPUBXMLSink;
23 
25 {
26  // disable copying
27  EPUBManifest(const EPUBManifest &);
29 
30  typedef std::pair<std::string, std::string> ValueType_t;
31  typedef boost::unordered_map<std::string, ValueType_t> MapType_t;
32 
33 public:
34  EPUBManifest();
35 
36  void insert(const EPUBPath &path, const std::string &mimetype, const std::string &id);
37 
38  void writeTo(EPUBXMLSink &sink);
39 
40 private:
41  MapType_t m_map;
42 };
43 
44 }
45 
46 #endif // INCLUDED_EPUBMANIFEST_H
47 
48 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
std::pair< std::string, std::string > ValueType_t
Definition: EPUBManifest.h:30
Definition: EPUBBinarySink.cpp:12
EPUBManifest()
Definition: EPUBManifest.cpp:19
MapType_t m_map
Definition: EPUBManifest.h:41
Definition: EPUBManifest.h:24
void insert(const EPUBPath &path, const std::string &mimetype, const std::string &id)
Definition: EPUBManifest.cpp:24
EPUBManifest & operator=(const EPUBManifest &)
Representation of a path in the package.
Definition: EPUBPath.h:21
boost::unordered_map< std::string, ValueType_t > MapType_t
Definition: EPUBManifest.h:31
Definition: EPUBXMLSink.h:26
void writeTo(EPUBXMLSink &sink)
Definition: EPUBManifest.cpp:32

Generated for libepubgen by doxygen 1.8.9.1