summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/Display/NavDisplayGUI_exec/QuitCmd.h
blob: 92b2b0110ebb8f2e5e25d7c0683c49db956cc35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// $Id$

#ifndef __QUITCMD_H
#define __QUITCMD_H

#include "Command.h"

class RootPanel;

class QuitCmd : public CommandBase
{
public:
  static QuitCmd *create(RootPanel *form);

public:
  virtual int execute(void *context = 0);

protected:
  QuitCmd();

  RootPanel *form_;
};


#endif // __QUITCMD_H