Now builds.

* Cut out all extraneous includes.
This commit is contained in:
2025-01-04 07:33:15 -04:00
parent 6beda55971
commit 841441806c
12 changed files with 41 additions and 73 deletions
+6 -1
View File
@@ -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(
+2
View File
@@ -1,6 +1,8 @@
#ifndef DIRECTOR_H
#define DIRECTOR_H
#include <config.h>
namespace director {
class Director {