blob: 461f5e22d264c69f7239b78fc1914537a573dfc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __MENU_H__
#define __MENU_H__
#include <Action.h>
#include <String.h>
#include <Exceptions.h>
class Menu : public Action {
public:
Menu(const String & titre, const String & url, String * labels, Action ** listac, int nb);
virtual ~Menu() {}
virtual String GetTitle();
virtual Task * Do(Variables *, Variables *, Handle *);
private:
String tit;
String * lt;
Action ** la;
int nba;
};
#endif
|