Last change
on this file since 447896 was a83171, checked in by Frederik Heber <heber@…>, 15 years ago |
Default molecule name can be set via command line, BUGFIX: molecule::DepthFirstSearchAnalysis() seg'faulted on no atoms.
Allow '-I' on empty configs:
new case 'X' for setting default molecule name:
|
-
Property mode
set to
100644
|
File size:
772 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * world.hpp
|
---|
3 | *
|
---|
4 | * Created on: Mar 3, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef WORLD_HPP_
|
---|
9 | #define WORLD_HPP_
|
---|
10 |
|
---|
11 | using namespace std;
|
---|
12 |
|
---|
13 | /*********************************************** includes ***********************************/
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 |
|
---|
21 | /****************************************** forward declarations *****************************/
|
---|
22 |
|
---|
23 | /********************************************** Class World *******************************/
|
---|
24 |
|
---|
25 | class World
|
---|
26 | {
|
---|
27 | /***** singleton Stuff *****/
|
---|
28 | public:
|
---|
29 | static World* get();
|
---|
30 | static void destroy();
|
---|
31 | static World* reset();
|
---|
32 |
|
---|
33 | static double *cell_size;
|
---|
34 | static char *DefaultName;
|
---|
35 |
|
---|
36 | private:
|
---|
37 | World();
|
---|
38 | virtual ~World();
|
---|
39 |
|
---|
40 | static World *theWorld;
|
---|
41 | };
|
---|
42 |
|
---|
43 | #endif /* WORLD_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.