Guiliani  Version 2.6 revision 7293 (documentation build 12)
GUIQuitCmd.h
1/*
2* Copyright (C) TES Electronic Solutions GmbH,
3* All Rights Reserved.
4* Contact: info@guiliani.de
5*
6* This file is part of the Guiliani HMI framework
7* for the development of graphical user interfaces on embedded systems.
8*/
9
10#if !defined(GUI_QUIT_CMD_H)
11#define GUI_QUIT_CMD_H
12
13#include "GUICommand.h"
14
16
21{
22public:
24
25#if defined(GUILIANI_STREAM_GUI)
26 virtual void ReadFromStream();
27#endif
28
29#if defined(GUILIANI_WRITE_GUI)
30 virtual void WriteToStream(const eC_Bool bWriteClassID = false);
31#endif
32
33protected:
35 virtual void Do();
36};
37
38#endif // GUI_QUIT_CMD_H
Command object base class.
Definition: GUICommand.h:127
Quits the Guiliani application by ending the main loop.
Definition: GUIQuitCmd.h:21
virtual void Do()
virtual void ReadFromStream()
virtual void WriteToStream(const eC_Bool bWriteClassID=false)