From 84d555cb9ab1ce1bce673393a83d67e99d555d33 Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Fri, 6 May 2005 12:42:05 +0000 Subject: [PATCH] added action files --- action.cpp | 3 +++ action.h | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 action.cpp create mode 100644 action.h diff --git a/action.cpp b/action.cpp new file mode 100644 index 0000000..2508b5c --- /dev/null +++ b/action.cpp @@ -0,0 +1,3 @@ +#include "action.h" + + diff --git a/action.h b/action.h new file mode 100644 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 preconditions; + std::vector effects; + +}; + +#endif -- 2.39.2