#include <string>#include <map>#include <celutil/resmanager.h>#include <celengine/orbit.h>Include dependency graph for trajmanager.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Typedefs | |
| typedef ResourceManager< TrajectoryInfo > | TrajectoryManager |
Functions | |
| TrajectoryManager * | GetTrajectoryManager () |
| bool | operator< (const TrajectoryInfo &ti0, const TrajectoryInfo &ti1) |
|
|
Definition at line 41 of file trajmanager.h. |
|
|
Definition at line 24 of file trajmanager.cpp. References trajectoryManager. Referenced by CreateOrbit(). 00025 {
00026 if (trajectoryManager == NULL)
00027 trajectoryManager = new TrajectoryManager("data");
00028 return trajectoryManager;
00029 }
|
|
||||||||||||
|
Definition at line 33 of file trajmanager.h. 00034 {
00035 if (ti0.source == ti1.source)
00036 return ti0.path < ti1.path;
00037 else
00038 return ti0.source < ti1.source;
00039 }
|
1.4.1