Now builds.
* Cut out all extraneous includes.
This commit is contained in:
@@ -43,7 +43,12 @@ public:
|
||||
|
||||
void reset() { iter = commandList.commands.begin(); }
|
||||
bool hasNext() const { return iter != commandList.commands.end(); }
|
||||
Cursor next() { return Cursor(commandList, ++iter); }
|
||||
Cursor next() { return ++(*this); }
|
||||
|
||||
Cursor& operator++() {
|
||||
++iter;
|
||||
return *this;
|
||||
}
|
||||
|
||||
private:
|
||||
Cursor(
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef DIRECTOR_H
|
||||
#define DIRECTOR_H
|
||||
|
||||
#include <config.h>
|
||||
|
||||
namespace director {
|
||||
|
||||
class Director {
|
||||
|
||||
Reference in New Issue
Block a user