From 4e034fbbd09201f5cbe7c8eef000c46910dedc97 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Mon, 10 Nov 2014 16:00:53 +0100 Subject: [PATCH] Initail commit of basic structure --- PrinterApplication.py | 8 ++++++++ printer.py | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 PrinterApplication.py create mode 100755 printer.py diff --git a/PrinterApplication.py b/PrinterApplication.py new file mode 100644 index 0000000000..fcc1de2aae --- /dev/null +++ b/PrinterApplication.py @@ -0,0 +1,8 @@ +from Cura.Application import Application + +class PrinterApplication(Application): + def __init__(self): + super(Application, self).__init__() + + def run(self): + print("Shoopdawoop") diff --git a/printer.py b/printer.py new file mode 100755 index 0000000000..9d86e20220 --- /dev/null +++ b/printer.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python2 + +from PrinterApplication import PrinterApplication + +app = PrinterApplication() +app.run() \ No newline at end of file