You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
298 B
C++

#ifndef QTPACTION_H
#define QTPACTION_H
#include "tpGuiHeader.h"
#include <QtWidgets\qaction.h>
class QTpAction : public QAction
{
Q_OBJECT
public:
QTpAction(QObject *parent);
virtual ~QTpAction();
private Q_SLOTS:
void OnTriggered(bool bChecked);
};
#endif // QTPACTION_H