summaryrefslogtreecommitdiffstats
path: root/src/extension/script/cpptest.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-03-10 00:03:28 +0000
committerishmal <ishmal@users.sourceforge.net>2008-03-10 00:03:28 +0000
commit5421346cad32ea60be596291c74200bed21c2ef2 (patch)
treeaaa13c90610c1e087007608851b36dc1f24e1f82 /src/extension/script/cpptest.cpp
parentDon't steal 'del' key in pen context when there is no curve being drawn (clos... (diff)
downloadinkscape-5421346cad32ea60be596291c74200bed21c2ef2.tar.gz
inkscape-5421346cad32ea60be596291c74200bed21c2ef2.zip
Switch to newer binding stuff
(bzr r5016)
Diffstat (limited to '')
-rw-r--r--src/extension/script/cpptest.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/extension/script/cpptest.cpp b/src/extension/script/cpptest.cpp
deleted file mode 100644
index e5c9d34de..000000000
--- a/src/extension/script/cpptest.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-
-#include <stdio.h>
-
-#include "InkscapeBinding.h"
-
-void doTest()
-{
- Inkscape::Extension::Script::Inkscape *inkscape =
- Inkscape::Extension::Script::getInkscape();
- Inkscape::Extension::Script::Desktop *desktop = inkscape->getDesktop();
- Inkscape::Extension::Script::Document *document = desktop->getDocument();
- document->hello();
-}
-
-int main(int argc, char **argv)
-{
-
- doTest();
-
-}
-
-