~vaifrax/inkscape/bugfix170049

« back to all changes in this revision

Viewing changes to src/extension/script/InkscapePython.h

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __INKSCAPE_PYTHON_H__
 
2
#define __INKSCAPE_PYTHON_H__
 
3
 
 
4
/**
 
5
 * Python Interpreter wrapper for Inkscape
 
6
 *
 
7
 * Authors:
 
8
 *   Bob Jamison <rjamison@titan.com>
 
9
 *
 
10
 * Copyright (C) 2004 Authors
 
11
 *
 
12
 * Released under GNU GPL, read the file 'COPYING' for more information
 
13
 */
 
14
 
 
15
#include "InkscapeInterpreter.h"
 
16
#include <glibmm.h>
 
17
 
 
18
namespace Inkscape {
 
19
namespace Extension {
 
20
namespace Script {
 
21
 
 
22
 
 
23
 
 
24
class InkscapePython : public InkscapeInterpreter
 
25
{
 
26
public:
 
27
 
 
28
    /*
 
29
     *
 
30
     */
 
31
    InkscapePython();
 
32
    
 
33
 
 
34
    /*
 
35
     *
 
36
     */
 
37
    virtual ~InkscapePython();
 
38
    
 
39
    
 
40
 
 
41
    /*
 
42
     *
 
43
     */
 
44
    virtual bool interpretScript(Glib::ustring &script,
 
45
                                 Glib::ustring &output,
 
46
                                 Glib::ustring &error);
 
47
    
 
48
    
 
49
 
 
50
    
 
51
private:
 
52
 
 
53
 
 
54
};
 
55
 
 
56
 
 
57
}  // namespace Script
 
58
}  // namespace Extension
 
59
}  // namespace Inkscape
 
60
 
 
61
 
 
62
 
 
63
#endif /*__INKSCAPE_PYTHON_H__ */
 
64
 
 
65
/*
 
66
  Local Variables:
 
67
  mode:c++
 
68
  c-file-style:"stroustrup"
 
69
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
70
  indent-tabs-mode:nil
 
71
  fill-column:99
 
72
  End:
 
73
*/
 
74
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :