summaryrefslogtreecommitdiffstats
path: root/src/inkview-main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inkview-main.cpp')
-rw-r--r--src/inkview-main.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/inkview-main.cpp b/src/inkview-main.cpp
new file mode 100644
index 000000000..ed694596d
--- /dev/null
+++ b/src/inkview-main.cpp
@@ -0,0 +1,28 @@
+/*
+ * Inkview - An SVG file viewer.
+ *
+ * Copyright (C) 2018 Tavmjong Bah
+ *
+ * The contents of this file may be used under the GNU General Public License Version 2 or later.
+ *
+ */
+
+#include "inkview-application.h"
+
+int main(int argc, char *argv[])
+{
+ auto application = InkviewApplication::create();
+
+ return application->run(argc, argv);
+}
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :