Files
OpenSpace/include/openspace/interaction/externalcontrol/externalconnectioncontroller.h
Alexander Bock 906470f28e Untabify the rest of the source files
Update Ghoul repository
2016-04-18 20:14:29 +02:00

24 lines
467 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