Code

Merge from fe-moved
[inkscape.git] / src / application / app-prototype.cpp
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 #include "app-prototype.h"
14 namespace Inkscape {
15 namespace NSApplication {
17 AppPrototype::AppPrototype()
18 {
19 }
21 AppPrototype::AppPrototype(int /*argc*/, const char **/*argv*/)
22 {
23 }
25 AppPrototype::~AppPrototype()
26 {
27 }
30 } // namespace NSApplication
31 } // namespace Inkscape
34 /*
35   Local Variables:
36   mode:c++
37   c-file-style:"stroustrup"
38   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
39   indent-tabs-mode:nil
40   fill-column:99
41   End:
42 */
43 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :