Branch data Line data Source code
1 : : /*
2 : : * gnc-plugin-basic-commands.h --
3 : : *
4 : : * Copyright (C) 2005 David Hampton <hampton@employees.org>
5 : : *
6 : : * This program is free software; you can redistribute it and/or
7 : : * modify it under the terms of the GNU General Public License as
8 : : * published by the Free Software Foundation; either version 2 of
9 : : * the License, or (at your option) any later version.
10 : : *
11 : : * This program is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : * GNU General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU General Public License
17 : : * along with this program; if not, contact:
18 : : *
19 : : * Free Software Foundation Voice: +1-617-542-5942
20 : : * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
21 : : * Boston, MA 02110-1301, USA gnu@gnu.org
22 : : */
23 : :
24 : : /** @addtogroup MenuPlugins
25 : : @{ */
26 : : /** @addtogroup GncPluginAccountTree An Account Tree Plugin
27 : : @{ */
28 : : /** @file gnc-plugin-basic-commands.h
29 : : @brief Functions providing a basic set of menu items.
30 : : @author Copyright (C) 2005 David Hampton <hampton@employees.org>
31 : : */
32 : :
33 : : #ifndef __GNC_PLUGIN_BASIC_COMMANDS_H
34 : : #define __GNC_PLUGIN_BASIC_COMMANDS_H
35 : :
36 : : #include <gtk/gtk.h>
37 : :
38 : : #include "gnc-plugin.h"
39 : :
40 : : G_BEGIN_DECLS
41 : :
42 : : /* type macros */
43 : : #define GNC_TYPE_PLUGIN_BASIC_COMMANDS (gnc_plugin_basic_commands_get_type ())
44 : 0 : G_DECLARE_FINAL_TYPE (GncPluginBasicCommands, gnc_plugin_basic_commands, GNC, PLUGIN_BASIC_COMMANDS, GncPlugin)
45 : :
46 : : #define GNC_PLUGIN_BASIC_COMMANDS_NAME "gnc-plugin-basic-commands"
47 : :
48 : : /** Create a new basic commands menu plugin.
49 : : *
50 : : * @return A pointer to the new object.
51 : : */
52 : : GncPlugin *gnc_plugin_basic_commands_new (void);
53 : :
54 : : G_END_DECLS
55 : :
56 : : #endif /* __GNC_PLUGIN_BASIC_COMMANDS_H */
57 : :
58 : : /** @} */
59 : : /** @} */
|