Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
common.h
1
2/*
3 * OGF/Graphite: Geometry and Graphics Programming Library + Utilities
4 * Copyright (C) 2000-2015 INRIA - Project ALICE
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (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, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * If you modify this software, you should include a notice giving the
21 * name of the person performing the modification, the date of modification,
22 * and the reason for such modification.
23 *
24 * Contact for Graphite: Bruno Levy - Bruno.Levy@inria.fr
25 * Contact for this Plugin: Bruno Levy
26 *
27 * Project ALICE
28 * LORIA, INRIA Lorraine,
29 * Campus Scientifique, BP 239
30 * 54506 VANDOEUVRE LES NANCY CEDEX
31 * FRANCE
32 *
33 * Note that the GNU General Public License does not permit incorporating
34 * the Software into proprietary programs.
35 *
36 * As an exception to the GPL, Graphite can be linked with the following
37 * (non-GPL) libraries:
38 * Qt, tetgen, SuperLU, WildMagic and CGAL
39 */
40
41
42#ifndef OGF_scene_graph_gfx_COMMON_COMMON
43#define OGF_scene_graph_gfx_COMMON_COMMON
44
46#ifdef scene_graph_gfx_EXPORTS
47# define SCENE_GRAPH_GFX_API OGF_EXPORT
48#else
49# define SCENE_GRAPH_GFX_API OGF_IMPORT
50#endif
51
52namespace OGF {
53 static class SCENE_GRAPH_GFX_API scene_graph_gfx_libinit {
54 public:
55 scene_graph_gfx_libinit();
56 ~scene_graph_gfx_libinit();
57
58 static void increment_users();
59 static void decrement_users();
60
61 private:
62 static void initialize();
63 static void terminate();
64 static int count_;
65 } scene_graph_gfx_libinit_instance;
66}
67
68#endif
void initialize()
Initializes the command line framework.
void terminate()
Cleans up the command line framework.
Global Graphite namespace.
Definition common.h:76
Definitions common to all include files in the basic library.