summaryrefslogtreecommitdiff
path: root/include/luma.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/luma.hh')
-rw-r--r--include/luma.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/luma.hh b/include/luma.hh
new file mode 100644
index 0000000..2378e82
--- /dev/null
+++ b/include/luma.hh
@@ -0,0 +1,10 @@
+#if !defined(LUMA__HEADER)
+# define LUMA__HEADER
+class luma {
+public:
+ [[noreturn]] luma(int const argc,char const * * argv);
+ ~luma();
+private:
+ void arghandl(int const argc, char const * * argv);
+};
+# endif