]> ruin.nu Git - popboot.git/commitdiff
added action files
authorMichael Andreen <harv@ruin.nu>
Fri, 6 May 2005 12:42:05 +0000 (12:42 +0000)
committerMichael Andreen <harv@ruin.nu>
Fri, 6 May 2005 12:42:05 +0000 (12:42 +0000)
action.cpp [new file with mode: 0644]
action.h [new file with mode: 0644]

diff --git a/action.cpp b/action.cpp
new file mode 100644 (file)
index 0000000..2508b5c
--- /dev/null
@@ -0,0 +1,3 @@
+#include "action.h"
+
+
diff --git a/action.h b/action.h
new file mode 100644 (file)
index 0000000..4550771
--- /dev/null
+++ b/action.h
@@ -0,0 +1,13 @@
+#ifndef __ACTION_H__
+#define __ACTION_H__
+
+class Action {
+
+       protected:
+               std::string executable;
+               std::vector<string> preconditions;
+               std::vector<string> effects;
+
+};
+
+#endif