~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/filters/merge.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SP_FEMERGE_H_SEEN
 
2
#define SP_FEMERGE_H_SEEN
 
3
 
 
4
/** \file
 
5
 * SVG <feMerge> implementation, see Merge.cpp.
 
6
 */
 
7
/*
 
8
 * Authors:
 
9
 *   Hugo Rodrigues <haa.rodrigues@gmail.com>
 
10
 *
 
11
 * Copyright (C) 2006 Hugo Rodrigues
 
12
 *
 
13
 * Released under GNU GPL, read the file 'COPYING' for more information
 
14
 */
 
15
 
 
16
#include "sp-filter.h"
 
17
#include "merge-fns.h"
 
18
 
 
19
/* FeMerge base class */
 
20
class SPFeMergeClass;
 
21
 
 
22
struct SPFeMerge : public SPFilterPrimitive {
 
23
    
 
24
};
 
25
 
 
26
struct SPFeMergeClass {
 
27
    SPFilterPrimitiveClass parent_class;
 
28
};
 
29
 
 
30
GType sp_feMerge_get_type();
 
31
 
 
32
 
 
33
#endif /* !SP_FEMERGE_H_SEEN */
 
34
 
 
35
/*
 
36
  Local Variables:
 
37
  mode:c++
 
38
  c-file-style:"stroustrup"
 
39
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
40
  indent-tabs-mode:nil
 
41
  fill-column:99
 
42
  End:
 
43
*/
 
44
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :