ControllerInterface: Implement dummy UpdateInput / UpdateOutputs

Make the implementation here a bit easier.
This commit is contained in:
Jasper St. Pierre
2014-11-13 00:53:24 -08:00
parent 0c056c6411
commit 367a42dcfd
10 changed files with 3 additions and 32 deletions

View File

@ -100,8 +100,8 @@ public:
virtual std::string GetName() const = 0;
virtual int GetId() const = 0;
virtual std::string GetSource() const = 0;
virtual bool UpdateInput() = 0;
virtual bool UpdateOutput() = 0;
virtual bool UpdateInput() { return true; }
virtual bool UpdateOutput() { return true; }
virtual void ClearInputState();