EPUBPath.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_EPUBPATH_H
11 #define INCLUDED_EPUBPATH_H
12 
13 #include <string>
14 #include <vector>
15 
16 namespace libepubgen
17 {
18 
21 class EPUBPath
22 {
23  friend bool operator==(const EPUBPath &left, const EPUBPath &right);
24 
25 public:
26  class Relative
27  {
28  friend class EPUBPath;
29 
30  public:
31  const std::string str() const;
32 
33  private:
34  explicit Relative(const std::vector<std::string> &components);
35 
36  private:
37  std::vector<std::string> m_components;
38  };
39 
40  explicit EPUBPath(const std::string &path);
41 
42  void swap(EPUBPath &other);
43 
44  void append(const EPUBPath &subpath);
45  void appendComponent(const std::string &pathComponent);
46 
47  const std::string str() const;
48 
49  const Relative relativeTo(const EPUBPath &base) const;
50 
51 private:
52  std::vector<std::string> m_components;
53 };
54 
55 bool operator==(const EPUBPath &left, const EPUBPath &right);
56 bool operator!=(const EPUBPath &left, const EPUBPath &right);
57 
58 const EPUBPath operator/(const EPUBPath &base, const EPUBPath &subpath);
59 const EPUBPath operator/(const EPUBPath &base, const std::string &pathComponent);
60 
61 void swap(EPUBPath &left, EPUBPath &right);
62 
63 }
64 
65 #endif // INCLUDED_EPUBPATH
66 
67 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
const std::string str() const
Definition: EPUBPath.cpp:44
void swap(EPUBPath &left, EPUBPath &right)
Definition: EPUBPath.cpp:137
Definition: EPUBPath.h:26
Definition: EPUBBinarySink.cpp:12
const EPUBPath operator/(const EPUBPath &base, const EPUBPath &subpath)
Definition: EPUBPath.cpp:123
void append(const EPUBPath &subpath)
Definition: EPUBPath.cpp:69
const Relative relativeTo(const EPUBPath &base) const
Definition: EPUBPath.cpp:89
bool operator!=(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:118
std::vector< std::string > m_components
Definition: EPUBPath.h:37
Relative(const std::vector< std::string > &components)
Definition: EPUBPath.cpp:49
friend bool operator==(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:113
void appendComponent(const std::string &pathComponent)
Definition: EPUBPath.cpp:74
Representation of a path in the package.
Definition: EPUBPath.h:21
std::vector< std::string > m_components
Definition: EPUBPath.h:52
bool operator==(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:113
EPUBPath(const std::string &path)
Definition: EPUBPath.cpp:54
const std::string str() const
Definition: EPUBPath.cpp:84
void swap(EPUBPath &other)
Definition: EPUBPath.cpp:64

Generated for libepubgen by doxygen 1.8.10