~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __INKSCAPE_INTERPRETER_H__
2
 
#define __INKSCAPE_INTERPRETER_H__
3
 
 
4
 
/**
5
 
 * Base class for interpreter implementations, (InkscapePython, etc)
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 <glibmm.h>
16
 
 
17
 
namespace Inkscape {
18
 
namespace Extension {
19
 
namespace Script {
20
 
 
21
 
 
22
 
class InkscapeInterpreter
23
 
{
24
 
public:
25
 
 
26
 
    /**
27
 
     *
28
 
     */
29
 
    InkscapeInterpreter();
30
 
 
31
 
    /**
32
 
     *
33
 
     */
34
 
    virtual ~InkscapeInterpreter();
35
 
 
36
 
    /**
37
 
     *
38
 
     */
39
 
    virtual bool interpretScript(const Glib::ustring &script,
40
 
                                 Glib::ustring &output,
41
 
                                 Glib::ustring &error);
42
 
 
43
 
    /**
44
 
     *
45
 
     */
46
 
    virtual bool interpretUri(const Glib::ustring &uri,
47
 
                              Glib::ustring &output,
48
 
                              Glib::ustring &error);
49
 
 
50
 
 
51
 
 
52
 
}; //class InkscapeInterpreter
53
 
 
54
 
 
55
 
 
56
 
 
57
 
}  // namespace Script
58
 
}  // namespace Extension
59
 
}  // namespace Inkscape
60
 
 
61
 
 
62
 
 
63
 
#endif  /* __INKSCAPE_INTERPRETER_H__ */
64
 
//#########################################################################
65
 
//# E N D    O F    F I L E
66
 
//#########################################################################
67
 
 
68