Added getSolarSystemCatalog method

This commit is contained in:
Chris Laurel 2001-06-01 22:57:07 +00:00
parent 8702cc2724
commit 451c8bcc9e
2 changed files with 6 additions and 0 deletions

View file

@ -241,6 +241,11 @@ StarDatabase* Simulation::getStarDatabase() const
return stardb;
}
SolarSystemCatalog* Simulation::getSolarSystemCatalog() const
{
return solarSystemCatalog;
}
void Simulation::setStarDatabase(StarDatabase* db,
SolarSystemCatalog* catalog,
GalaxyList* galaxyList)

View file

@ -39,6 +39,7 @@ class Simulation
Selection pickObject(Vec3f pickRay);
StarDatabase* getStarDatabase() const;
SolarSystemCatalog* getSolarSystemCatalog() const;
void setStarDatabase(StarDatabase* db,
SolarSystemCatalog* catalog,
GalaxyList*);