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
16namespace libepubgen
17{
18
22{
23 friend bool operator==(const EPUBPath &left, const EPUBPath &right);
24
25public:
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 void appendTitle(const std::string &title);
52 std::string getTitle() const;
53
54private:
55 std::vector<std::string> m_components;
56 std::string m_title;
57};
58
59bool operator==(const EPUBPath &left, const EPUBPath &right);
60bool operator!=(const EPUBPath &left, const EPUBPath &right);
61
62const EPUBPath operator/(const EPUBPath &base, const EPUBPath &subpath);
63const EPUBPath operator/(const EPUBPath &base, const std::string &pathComponent);
64
65void swap(EPUBPath &left, EPUBPath &right);
66
67}
68
69#endif // INCLUDED_EPUBPATH
70
71/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition: EPUBPath.h:27
std::vector< std::string > m_components
Definition: EPUBPath.h:37
const std::string str() const
Definition: EPUBPath.cpp:44
Representation of a path in the package.
Definition: EPUBPath.h:22
void append(const EPUBPath &subpath)
Definition: EPUBPath.cpp:70
const std::string str() const
Definition: EPUBPath.cpp:85
void swap(EPUBPath &other)
Definition: EPUBPath.cpp:65
friend bool operator==(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:124
void appendComponent(const std::string &pathComponent)
Definition: EPUBPath.cpp:75
std::string m_title
Definition: EPUBPath.h:56
std::vector< std::string > m_components
Definition: EPUBPath.h:55
const Relative relativeTo(const EPUBPath &base) const
Definition: EPUBPath.cpp:90
void appendTitle(const std::string &title)
Definition: EPUBPath.cpp:114
std::string getTitle() const
Definition: EPUBPath.cpp:119
Definition: EPUBBinarySink.cpp:13
bool operator!=(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:129
void swap(EPUBPath &left, EPUBPath &right)
Definition: EPUBPath.cpp:148
bool operator==(const EPUBPath &left, const EPUBPath &right)
Definition: EPUBPath.cpp:124
const EPUBPath operator/(const EPUBPath &base, const EPUBPath &subpath)
Definition: EPUBPath.cpp:134

Generated for libepubgen by doxygen 1.9.5