Panda3D
qtessGlobals.h
1 // Filename: qtessGlobals.h
2 // Created by: drose (13Oct03)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef QTESS_GLOBALS_H
16 #define QTESS_GLOBALS_H
17 
18 #include "pandatoolbase.h"
19 
20 ////////////////////////////////////////////////////////////////////
21 // Class : QtessGlobals
22 // Description : Simply used as a namespace to scope some global
23 // variables for this program, set from the command
24 // line.
25 ////////////////////////////////////////////////////////////////////
26 class QtessGlobals {
27 public:
28  static bool _auto_place;
29  static bool _auto_distribute;
30  static double _curvature_ratio;
31  static bool _respect_egg;
32 };
33 
34 #endif
35 
Simply used as a namespace to scope some global variables for this program, set from the command line...
Definition: qtessGlobals.h:26