#ifndef __CONFIRM_H__ #define __CONFIRM_H__ #include #include #include class Confirm : public Action { public: Confirm(const String & titre, const String & msg, const String & url, Action * yes, Action * no = 0); virtual ~Confirm() { } virtual String GetTitle(); virtual Task * Do(Variables *, Variables *, Handle *); private: String tit, msg; Action * NYes, * NNo; }; #endif