Files
crosspoint-reader/lib/Epub/Epub/EpubTocEntry.h

11 lines
138 B
C
Raw Normal View History

#pragma once
#include <string>
struct EpubTocEntry {
std::string title;
std::string href;
std::string anchor;
uint8_t level;
};