~vaifrax/inkscape/bugfix170049

« back to all changes in this revision

Viewing changes to src/extension/extension-forward.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 SEEN_EXTENSION_FORWARD_H
 
2
#define SEEN_EXTENSION_FORWARD_H
 
3
 
 
4
namespace Inkscape {
 
5
namespace Extension {
 
6
 
 
7
class Effect;
 
8
class Extension;
 
9
class Input;
 
10
class Output;
 
11
class Print;
 
12
 
 
13
class Dependency;
 
14
class Parameter;
 
15
class ExpirationTimer;
 
16
 
 
17
namespace Implementation {
 
18
class Implementation;
 
19
}
 
20
 
 
21
} }
 
22
 
 
23
#endif /* !SEEN_EXTENSION_FORWARD_H */
 
24
 
 
25
/*
 
26
  Local Variables:
 
27
  mode:c++
 
28
  c-file-style:"stroustrup"
 
29
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
30
  indent-tabs-mode:nil
 
31
  fill-column:99
 
32
  End:
 
33
*/
 
34
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :