summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/NavDisplayGUI_exec/QuitCmd.h
blob: a80d749640e16e99391af8aca2d6ea5e3f9ac31b (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 = NULL);

protected:
  QuitCmd();

  RootPanel *form_;
};


#endif // __QUITCMD_H