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

« back to all changes in this revision

Viewing changes to src/extension/internal/libwpg/WPGraphics.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Kees Cook, Ted Gould
  • Date: 2008-02-10 14:20:16 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080210142016-vcnb2zqyhszu0xvb
Tags: 0.46~pre1-0ubuntu1
[ Kees Cook ]
* debian/control:
  - add libgtkspell-dev build-dep to gain GtkSpell features (LP: #183547).
  - update Standards version (no changes needed).
  - add Vcs and Homepage fields.
  - switch to new python-lxml dep.
* debian/{control,rules}: switch from dpatch to quilt for more sanity.
* debian/patches/20_fix_glib_and_gxx43_ftbfs.patch:
  - merged against upstream fixes.
  - added additional fixes for newly written code.
* debian/rules: enable parallel building.

[ Ted Gould ]
* Updating POTFILES.in to make it so things build correctly.
* debian/control:
  - add ImageMagick++ and libboost-dev to build-deps

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* libwpg
2
 
 * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
3
 
 *
4
 
 * This library is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU Library General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 2 of the License, or (at your option) any later version.
8
 
 *
9
 
 * This library is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * Library General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU Library General Public
15
 
 * License along with this library; if not, write to the 
16
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 
17
 
 * Boston, MA  02111-1301 USA
18
 
 *
19
 
 * For further information visit http://libwpg.sourceforge.net
20
 
 */
21
 
 
22
 
/* "This product is not manufactured, approved, or supported by
23
 
 * Corel Corporation or Corel Corporation Limited."
24
 
 */
25
 
 
26
 
#ifndef __WPGRAPHICS_H__
27
 
#define __WPGRAPHICS_H__
28
 
 
29
 
namespace libwpg
30
 
{
31
 
 
32
 
class WPGInputStream;
33
 
class WPGPaintInterface;
34
 
 
35
 
class WPGraphics
36
 
{
37
 
public:
38
 
        
39
 
        static bool isSupported(WPGInputStream* input);
40
 
        
41
 
        static bool parse(WPGInputStream* input, WPGPaintInterface* painter);
42
 
};
43
 
 
44
 
} // namespace libwpg
45
 
 
46
 
#endif //  __WPGRAPHICS_H__