blob: f84cff59bd9dd8187d45a033a4368e0625d781fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SEEN_MESH_TOOLBAR_H
#define SEEN_MESH_TOOLBAR_H
/*
* Mesh aux toolbar
*
* Authors:
* bulia byak <bulia@dr.com>
* Tavmjong Bah <tavmjong@free.fr>
*
* Copyright (C) 2012 authors
* Copyright (C) 2005 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <gtk/gtk.h>
class SPDesktop;
void sp_mesh_toolbox_prep( SPDesktop * /*desktop*/, GtkActionGroup* mainActions, GObject* holder);
#endif /* !SEEN_MESH_TOOLBAR_H */
|