stec-platform
vactionitem.h
1 #ifndef VACTIONITEM_H
2 #define VACTIONITEM_H
3 /*
4 *
5 * $LastChangedDate: 2014-08-14 12:47:21 -0400 (Thu, 14 Aug 2014) $
6 * $LastChangedBy: ed $
7 * $Revision: 61 $
8 * $Author: ed $
9 * $URL: svn+ssh://svn.vremsoft.com/var/share/svn/tags/platfom3.4.3/platformglib/vactionitem.h $
10 * $Id: vactionitem.h 61 2014-08-14 16:47:21Z ed $
11 * edc@vremsoft.com
12 *
13 * 19
14 *
15 * *** 2014<c> ***
16 *
17 *
18 */
19 #include <QAction>
20 #include <QIcon>
21 #include <QString>
22 #include "platformg_global.h"
23 
29 class PLATFORMGSHARED_EXPORT VActionItem : public QAction
30 {
31  Q_OBJECT
32 public:
33  explicit VActionItem(QString Image, QObject *parent = 0);
34 
35 signals:
36 
37 public slots:
38 
39 };
40 
41 #endif // VACTIONITEM_H
The VActionItem class simple action if needed.
Definition: vactionitem.h:30