aboutsummaryrefslogtreecommitdiff
path: root/include/MediaChapter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/MediaChapter.hpp')
-rw-r--r--include/MediaChapter.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/MediaChapter.hpp b/include/MediaChapter.hpp
new file mode 100644
index 0000000..f90493b
--- /dev/null
+++ b/include/MediaChapter.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <string>
+
+namespace QuickMedia {
+ struct MediaChapter {
+ int start_seconds = 0;
+ std::string title; // newlines will be replaced by spaces
+ };
+} \ No newline at end of file