-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMeasurementValueSource.h
32 lines (26 loc) · 1019 Bytes
/
MeasurementValueSource.h
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
27
28
29
30
31
32
///////////////////////////////////////////////////////////
// MeasurementValueSource.h
// Implementation of the Class MeasurementValueSource
// Created on: 07-fev-2014 11:44:06
///////////////////////////////////////////////////////////
#if !defined(EA_38243BE4_A12B_445e_89A6_D080D5BDDC75__INCLUDED_)
#define EA_38243BE4_A12B_445e_89A6_D080D5BDDC75__INCLUDED_
#include <QList>
#include "MeasurementValue.h"
#include "IdentifiedObject.h"
/**
* MeasurementValueSource describes the alternative sources updating a
* MeasurementValue. User conventions for how to use the MeasurementValueSource
* attributes are described in the introduction to IEC 61970-301.
*/
class MeasurementValueSource : public IdentifiedObject
{
public:
MeasurementValueSource();
virtual ~MeasurementValueSource();
/**
* The MeasurementValues updated by the source.
*/
QList<MeasurementValue*> measurementValues;
};
#endif // !defined(EA_38243BE4_A12B_445e_89A6_D080D5BDDC75__INCLUDED_)