leocad/common/lc_application.h
2011-09-07 21:06:51 +00:00

51 lines
1 KiB
C++

#ifndef _LC_APPLICATION_H_
#define _LC_APPLICATION_H_
#include "array.h"
class Project;
class PiecesLibrary;
class lcApplication
{
public:
lcApplication();
~lcApplication();
bool Initialize(int argc, char *argv[], const char* SysLibPath);
void Shutdown();
// Pieces library.
bool LoadPiecesLibrary(const char* LibPath, const char* SysLibPath);
PiecesLibrary* GetPiecesLibrary() const
{
return m_Library;
}
// Projects.
void AddProject(Project* project);
Project* GetActiveProject() const
{
return m_ActiveProject;
}
void SetActiveProject(Project* project)
{
m_ActiveProject = project;
}
protected:
void ParseIntegerArgument(int* CurArg, int argc, char* argv[], int* Value);
void ParseStringArgument(int* CurArg, int argc, char* argv[], char** Value);
Project* m_ActiveProject;
PtrArray<Project> m_Projects;
PiecesLibrary* m_Library;
};
extern lcApplication* g_App;
PiecesLibrary* lcGetPiecesLibrary();
Project* lcGetActiveProject();
#endif // _LC_APPLICATION_H_