mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-01 17:20:09 -06:00
- Moved all OpenSpace headers to separate include directory - Added OpenSpaceTests binary with OPENSPACE_HAVE_TESTS define - Added CMake setting of BASE_DIR - Added OpenSpace initial tests for SceneGraph and SceneGraphNodes - Added OpenSpace initial tests for psc and pss - Restructured OpenSpace so no GL functions are called in constructors to make the classes testable - Todo: Make the base dir possible to set through command line argument and configuration file
24 lines
449 B
C++
24 lines
449 B
C++
#ifndef EXTERNALCONNECTIONCONTROLLER_H
|
|
#define EXTERNALCONNECTIONCONTROLLER_H
|
|
|
|
#include <openspace/interaction/externalcontrol/externalcontrol.h>
|
|
#include <vector>
|
|
|
|
namespace openspace {
|
|
|
|
class ExternalConnectionController: public ExternalControl {
|
|
public:
|
|
|
|
// constructors & destructor
|
|
ExternalConnectionController();
|
|
~ExternalConnectionController();
|
|
|
|
private:
|
|
|
|
std::vector<ExternalControl*> controllers;
|
|
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif |