summaryrefslogtreecommitdiff
path: root/src/texo.cpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-10-18 17:33:06 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-10-18 17:33:06 +0300
commit2c12c0652d2b8c8440e1e908f004826840ed14ab (patch)
tree881dd649f2b15ba5a8cd3aa285d073eee7c73386 /src/texo.cpp
parent9a23fd146be4ba64b0cb720993bdc73a514fecf2 (diff)
downloadtexo-2c12c0652d2b8c8440e1e908f004826840ed14ab.tar
texo-2c12c0652d2b8c8440e1e908f004826840ed14ab.tar.xz
texo-2c12c0652d2b8c8440e1e908f004826840ed14ab.zip
[texo] Semi-working.
Diffstat (limited to 'src/texo.cpp')
-rw-r--r--src/texo.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/texo.cpp b/src/texo.cpp
index aefff4c..fa4b4be 100644
--- a/src/texo.cpp
+++ b/src/texo.cpp
@@ -1 +1,32 @@
#include "texo.hpp"
+
+
+Texo::Texo(char c): c(c)
+{}
+
+TexoHeader::TexoHeader(int level, bool closing): level(level), closing(closing)
+{}
+
+TexoParagraph::TexoParagraph(bool closing): closing(closing)
+{}
+
+TexoCode::TexoCode(bool closing): closing(closing)
+{}
+
+TexoQuote::TexoQuote(bool closing): closing(closing)
+{}
+
+TexoMono::TexoMono(bool closing): closing(closing)
+{}
+
+TexoBold::TexoBold(bool closing): closing(closing)
+{}
+
+TexoItalic::TexoItalic(bool closing): closing(closing)
+{}
+
+TexoUnderline::TexoUnderline(bool closing): closing(closing)
+{}
+
+TexoStrike::TexoStrike(bool closing): closing(closing)
+{}