File: avaluetool.h

package info (click to toggle)
aeskulap 0.2.2b1%2Bgit20161206-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,840 kB
  • ctags: 1,302
  • sloc: cpp: 8,894; sh: 5,551; ansic: 685; makefile: 317; xml: 25
file content (23 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef AESKULAP_VALUETOOL_H
#define AESKULAP_VALUETOOL_H

#include "afloatwidget.h"
#include "studyview.h"

namespace Aeskulap {
	
class ValueTool : public FloatWidget {
public:

	ValueTool(StudyView& studyview);

	void set_value(double value);

protected:

	Gtk::Label* m_label;
};

} // namespace Aeskulap

#endif // AESKULAP_VALUETOOL_H