summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog1/Prakt6/prg1p6_1/frozenm.h
blob: 7631346e2cb41c9c4309421846c6a8dc7f722e87 (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
27
28
29
30
31
// Programmieren 1, Praktikum 6, Aufgabe 1
// Author: Sven Eisenhauer
// Date: 13.01.2005
// File: frozenm.h
// Description: class FrozenMeal



#ifndef FROZENM_1
#define FROZENM_1

#include <string>
using std::string;

class FrozenMeal {
public:
	//FrozenMeal(char *, int);
	FrozenMeal (string, int);
	~FrozenMeal();
	void changeTemperature(double &);
	string getName() { return name; }
	int getVolume() { return volume; }
	double getCoefficient() { return coefficient; }
	double getTemperature() { return temperature; }
private:
	string name;
	int volume;
	double temperature;
	double coefficient;
};
#endif