mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2025-12-18 15:17:42 +03:00
14 lines
330 B
C++
14 lines
330 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class EpubTocEntry {
|
|
public:
|
|
std::string title;
|
|
std::string href;
|
|
std::string anchor;
|
|
int level;
|
|
EpubTocEntry(std::string title, std::string href, std::string anchor, const int level)
|
|
: title(std::move(title)), href(std::move(href)), anchor(std::move(anchor)), level(level) {}
|
|
};
|