summaryrefslogtreecommitdiff
path: root/src/texo.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-08 19:49:40 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-08 19:56:11 +0300
commit3047ed6100a56a529f26e43ada0a3fc3c3815c3e (patch)
tree9648d5a74bae9cbd90670a8bfa0af47189e4536f /src/texo.hpp
parentc6419eed96f2832b1de2b94d711552efaa9b172d (diff)
downloadtexo-3047ed6100a56a529f26e43ada0a3fc3c3815c3e.tar
texo-3047ed6100a56a529f26e43ada0a3fc3c3815c3e.tar.xz
texo-3047ed6100a56a529f26e43ada0a3fc3c3815c3e.zip
[texo] Full rewrite of inner representation.
Diffstat (limited to 'src/texo.hpp')
-rw-r--r--src/texo.hpp61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/texo.hpp b/src/texo.hpp
deleted file mode 100644
index b8ae394..0000000
--- a/src/texo.hpp
+++ /dev/null
@@ -1,61 +0,0 @@
-#ifndef TEXO_INCLUDED_TEXO
-#define TEXO_INCLUDED_TEXO
-
-#include <scrvar.hpp>
-
-
-struct Texo {
- Texo(char c);
- char c;
-};
-
-
-/*
- * Texo Blocks
- */
-struct TexoHeader {
- TexoHeader(int level);
- int level; // Number >= 1, bigger for bigger.
-};
-
-struct TexoParagraph {};
-
-struct TexoCode {};
-
-struct TexoQuote {};
-
-
-/*
- * Texo Decorators
- */
-struct TexoMono {};
-
-struct TexoBold {};
-
-struct TexoItalic {};
-
-struct TexoUnderline {};
-
-struct TexoStrike {};
-
-
-/*
- * Texo Signals
- */
-struct TexoImage {
- ScriptVariable path;
- ScriptVariable title;
- ScriptVariable alt;
- ScriptVariable link;
-};
-
-struct TexoLink {
- ScriptVariable text;
- ScriptVariable link;
- ScriptVariable title;
-};
-
-struct TexoHorizontalRule {};
-
-
-#endif