MattyNotes
mattyclocks.h
Go to the documentation of this file.
1 #ifndef MATTYCLOCKS_H
2 #define MATTYCLOCKS_H
3 
4 #ifdef _MSC_VER
5 #pragma once
6 #endif // _MSC_VER
7 
8 #include <QLCDNumber>
9 
10 class MattyClocks : public QLCDNumber
11 {
12 Q_OBJECT
13 public:
14  MattyClocks(QWidget *parent = 0);
15  ~MattyClocks();
16 
17  private slots:
18  void showTime();
19 };
20 
21 
22 #endif // MATTYCLOCKS_H
~MattyClocks()
Definition: mattyclocks.cpp:16
Definition: mattyclocks.h:10
MattyClocks(QWidget *parent=0)
Definition: mattyclocks.cpp:6
void showTime()
Definition: mattyclocks.cpp:21