diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2007-04-15 01:18:55 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2007-04-15 01:18:55 +0000 |
| commit | a686e7032371fa1e628201312c7f59b2d460a830 (patch) | |
| tree | 93129fe33e3bf1682dbd63b80ac2f68ede39a6ee /src/extension/script/InkscapePython.h | |
| parent | Fix typo (diff) | |
| download | inkscape-a686e7032371fa1e628201312c7f59b2d460a830.tar.gz inkscape-a686e7032371fa1e628201312c7f59b2d460a830.zip | |
Rearrange bindings to use PyCXX
(bzr r2891)
Diffstat (limited to 'src/extension/script/InkscapePython.h')
| -rw-r--r-- | src/extension/script/InkscapePython.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/extension/script/InkscapePython.h b/src/extension/script/InkscapePython.h index 76739c152..a97c945c8 100644 --- a/src/extension/script/InkscapePython.h +++ b/src/extension/script/InkscapePython.h @@ -37,7 +37,6 @@ public: */ InkscapePython() { - initialized = false; } @@ -58,17 +57,20 @@ public: Glib::ustring &error); + virtual void writeStdOut(const Glib::ustring &txt) + { + stdOut.append(txt); + } + virtual void writeStdErr(const Glib::ustring &txt) + { + stdErr.append(txt); + } private: - /** - * First-time call to set things up - */ - bool initialize(); - - bool initialized; - + Glib::ustring stdOut; + Glib::ustring stdErr; }; |
