From df5286fe3bca619beb4771da1ffa8ace9613e9e5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 18 Aug 2006 17:21:02 +0000 Subject: Gutted, deleted almost all the source, too many changes to keep it around, we'll see what happens next. --- src/action.h | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/action.h (limited to 'src/action.h') diff --git a/src/action.h b/src/action.h deleted file mode 100644 index a5555a3..0000000 --- a/src/action.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef ACTION_H -#define ACTION_H - -#include -#include "staticstring.h" - -class Command; -class Builder; - -class Action -{ -public: - Action(); - Action( const char *sName ); - virtual ~Action(); - - void add( Command *pCmd ); - void add( int nType, const char *sCmd ); - - const char *getName() - { - return sName; - } - bool isDefault() - { - return bDefault; - } - - int getNumCommands() - { - return lCommand.size(); - } - - void debug(); - - void execute( class Builder &bld ); - -private: - bool bDefault; - StaticString sName; - std::list lCommand; - std::list > lRegExCommand; -}; - -#endif -- cgit v1.2.3