summaryrefslogtreecommitdiffstats
path: root/src/extension/script/InkscapeInterpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/script/InkscapeInterpreter.h')
-rw-r--r--src/extension/script/InkscapeInterpreter.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/extension/script/InkscapeInterpreter.h b/src/extension/script/InkscapeInterpreter.h
deleted file mode 100644
index 7d16ed979..000000000
--- a/src/extension/script/InkscapeInterpreter.h
+++ /dev/null
@@ -1,68 +0,0 @@
-#ifndef __INKSCAPE_INTERPRETER_H__
-#define __INKSCAPE_INTERPRETER_H__
-
-/**
- * Base class for interpreter implementations, (InkscapePython, etc)
- *
- * Authors:
- * Bob Jamison <rjamison@titan.com>
- *
- * Copyright (C) 2004 Authors
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
-
-#include <glibmm.h>
-
-namespace Inkscape {
-namespace Extension {
-namespace Script {
-
-
-class InkscapeInterpreter
-{
-public:
-
- /**
- *
- */
- InkscapeInterpreter();
-
- /**
- *
- */
- virtual ~InkscapeInterpreter();
-
- /**
- *
- */
- virtual bool interpretScript(const Glib::ustring &script,
- Glib::ustring &output,
- Glib::ustring &error);
-
- /**
- *
- */
- virtual bool interpretUri(const Glib::ustring &uri,
- Glib::ustring &output,
- Glib::ustring &error);
-
-
-
-}; //class InkscapeInterpreter
-
-
-
-
-} // namespace Script
-} // namespace Extension
-} // namespace Inkscape
-
-
-
-#endif /* __INKSCAPE_INTERPRETER_H__ */
-//#########################################################################
-//# E N D O F F I L E
-//#########################################################################
-
-