aboutsummaryrefslogtreecommitdiff
path: root/src/jsonable.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-04-13 15:14:34 -0400
committerYour Name <you@example.com>2021-04-13 15:14:34 -0400
commit2ab51e507d620c4479e07ca0ec47d22c8c66bc90 (patch)
tree90906ecb043c01034280c767b83a88eb6df6956f /src/jsonable.h
downloaddmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.gz
dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.bz2
dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.zip
Initial commit
Diffstat (limited to 'src/jsonable.h')
-rw-r--r--src/jsonable.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/jsonable.h b/src/jsonable.h
new file mode 100644
index 0000000..87f3f66
--- /dev/null
+++ b/src/jsonable.h
@@ -0,0 +1,7 @@
+#pragma once
+#include "json.hpp"
+
+class Jsonable {
+ public:
+ virtual nlohmann::json toJson(void) const = 0;
+};