summaryrefslogtreecommitdiff
path: root/include/Message.h
blob: fd6c6e998115c561ad19172f40afa36f7c190d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __MESSAGE_H__
#define __MESSAGE_H__

#include <Action.h>
#include <BString.h>
#include <Exceptions.h>

class Message : public Action {
  public:
      Message(const String & titre, const String & msg, const String & url, Action * ok = 0);
      virtual ~Message() { }
    virtual String GetTitle();
    virtual Task * Do(Variables *, Variables *, Handle *);

  private:
    String tit, msg;
    Action * Next;
};

#endif