Logo white

Peter M. Groen / openbr

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • openbr
  • app
  • openbr-gui
  • score.h
  • more code
    765897a9
    Josh Klontz authored
    2012-12-20 13:10:19 -0500  
    Browse Code ยป
score.h 323 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 21 22 23 24
#ifndef __SCORE_H
#define __SCORE_H

#include <QLabel>
#include <QWidget>
#include <openbr_export.h>

namespace br
{

class BR_EXPORT_GUI Score : public QLabel
{
    Q_OBJECT

public:
    explicit Score(QWidget *parent = 0);

public slots:
    void setScore(float score);
};

}

#endif // __SCORE_H