close Warning: Can't use blame annotator:
svn blame failed on trunk/tools/FlairGCS/src/PushButton.h: 200029 - Couldn't perform atomic initialization

source: flair-src/trunk/tools/FlairGCS/src/PushButton.h@ 9

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 385 bytes
RevLine 
1#ifndef PUSHBUTTON_H
2#define PUSHBUTTON_H
3
4#include "XmlWidget.h"
5
6class QPushButton;
7class Layout;
8
9class PushButton: public XmlWidget
10{
11 Q_OBJECT
12
13 public:
14 PushButton(Layout* parent,int row, int col,QString name);
15 ~PushButton();
16
17 private:
18 QPushButton *button;
19
20 private slots:
21 void button_clicked(bool state);
22
23};
24
25#endif // PUSHBUTTON_H
Note: See TracBrowser for help on using the repository browser.