blob: 03a0a81f62d8c35fe0fb76aa76925235da0f74fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2007 Nanorex, Inc. See LICENSE file for details.
#ifndef DATAWINDOW_H
#define DATAWINDOW_H
#include <QtGui>
#include <QWidget>
#include <string>
using namespace std;
/* CLASS: DataWindow */
class DataWindow : public QWidget {
Q_OBJECT
public:
DataWindow(QWidget *parent = 0);
virtual ~DataWindow() {};
protected:
void closeEvent(QCloseEvent *event);
void formatParameter(string& key, string& value, string& units);
};
#endif
|