You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
462 B
29 lines
462 B
|
3 years ago
|
#ifndef _FRIEDBERG_2007_H_
|
||
|
|
#define _FRIEDBERG_2007_H_
|
||
|
|
|
||
|
|
class Temperature
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Temperature():
|
||
|
|
minValue( 0.0 ),
|
||
|
|
maxValue( 0.0 ),
|
||
|
|
averageValue( 0.0 )
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
Temperature( double min, double max, double average ):
|
||
|
|
minValue( min ),
|
||
|
|
maxValue( max ),
|
||
|
|
averageValue( average )
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
double minValue;
|
||
|
|
double maxValue;
|
||
|
|
double averageValue;
|
||
|
|
};
|
||
|
|
|
||
|
|
extern Temperature friedberg2007[];
|
||
|
|
|
||
|
|
#endif
|