From: Michael Andreen Date: Fri, 6 May 2005 12:42:05 +0000 (+0000) Subject: added action files X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=commitdiff_plain;h=84d555cb9ab1ce1bce673393a83d67e99d555d33 added action files --- 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