Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / application / app-prototype.h
1 /** @file
2  * @brief  Base class for different application modes
3  */
4 /* Author:
5  *   Bryce W. Harrington <bryce@bryceharrington.org>
6  *
7  * Copyright (C) 2005 Bryce Harrington
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef INKSCAPE_APPLICATION_APP_PROTOTYPE_H
13 #define INKSCAPE_APPLICATION_APP_PROTOTYPE_H
15 namespace Gtk {
16 class Window;
17 }
20 namespace Inkscape {
21 namespace NSApplication {
23 class AppPrototype
24 {
25 public:
26     AppPrototype();
27     AppPrototype(int argc, const char **argv);
28     virtual ~AppPrototype();
30     virtual void* getWindow() = 0;
32 protected:
33     AppPrototype(AppPrototype const &);
34     AppPrototype& operator=(AppPrototype const &);
36 };
38 } // namespace NSApplication
39 } // namespace Inkscape
42 #endif /* !INKSCAPE_APPLICATION_APP_PROTOTYPE_H */
44 /*
45   Local Variables:
46   mode:c++
47   c-file-style:"stroustrup"
48   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
49   indent-tabs-mode:nil
50   fill-column:99
51   End:
52 */
53 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :