-
Notifications
You must be signed in to change notification settings - Fork 11
/
NonConformLoadGroup.h
33 lines (28 loc) · 987 Bytes
/
NonConformLoadGroup.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
33
///////////////////////////////////////////////////////////
// NonConformLoadGroup.h
// Implementation of the Class NonConformLoadGroup
// Created on: 07-fev-2014 11:44:11
///////////////////////////////////////////////////////////
#if !defined(EA_4B468225_4339_4b90_AF40_E51BD3841A07__INCLUDED_)
#define EA_4B468225_4339_4b90_AF40_E51BD3841A07__INCLUDED_
#include "NonConformLoad.h"
#include "LoadGroup.h"
#include "NonConformLoadSchedule.h"
/**
* Loads that do not follow a daily and seasonal load variation pattern.
*/
class NonConformLoadGroup : public LoadGroup
{
public:
NonConformLoadGroup();
virtual ~NonConformLoadGroup();
/**
* Conform loads assigned to this ConformLoadGroup.
*/
QList<NonConformLoad> *EnergyConsumers;
/**
* The NonConformLoadSchedules in the NonConformLoadGroup.
*/
QList<NonConformLoadSchedule> *NonConformLoadSchedules;
};
#endif // !defined(EA_4B468225_4339_4b90_AF40_E51BD3841A07__INCLUDED_)