20#ifndef SDFORMAT_EDITOR_MAIN_HH_
21#define SDFORMAT_EDITOR_MAIN_HH_
25#include "sdformat_parser.h"
26#include "interfaces/command_interface.h"
27#include "file_operations.h"
28#include "model_viewer.h"
54 std::shared_ptr<GUII>
gui;
Class to manage overall program operation.
Definition file_editor_runner.h:35
bool model_viewer_initalization_successful
Variable for checking if the model viewer was initilized successfully.
Definition file_editor_runner.h:48
std::shared_ptr< GUII > gui
Pointer to the GUI class instance.
Definition file_editor_runner.h:54
std::shared_ptr< SDFormatParserI > sdformatParser
Pointer to SDFormatParser which will be null until the user opens a file.
Definition file_editor_runner.h:51
bool gui_initalization_successful
Variable for checking if the gui was initilized successfully.
Definition file_editor_runner.h:45
std::shared_ptr< CommandFactoryI > command_factory
Pointer to the CommandFactory class instance.
Definition file_editor_runner.h:57
std::shared_ptr< ModelViewerI > model_viewer
Pointer to the model viewer object.
Definition file_editor_runner.h:60
int RunProgram()
Top level method that starts the program.
Definition file_editor_runner.cpp:79