GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
dcfe1e52480a436bbf0481d17c3c3f694cd9fce6
  • 1611_0007_prime_oven
  • app
  • gui
  • samples
  • analogclock
  • clock.h
  • d2d4687e0   아날로그 시계 추가 Browse Code »
    김태훈
    8 years ago  
clock.h 246 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef CLOCK_H
#define CLOCK_H

#include <QWidget>

class Clock : public QWidget
{
    Q_OBJECT
public:
    explicit Clock(QWidget *parent = 0);

signals:

public slots:

protected:
    void paintEvent(QPaintEvent *event);
};

#endif // CLOCK_H