mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
51 lines
1 KiB
C++
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_
|