Скачиваний:
134
Добавлен:
01.05.2014
Размер:
381 б
Скачать
#ifndef _shop_h_
#define _shop_h_

#include "machines.h"
#include "commodity.h"
#include "man.h"

struct ShopInformation{
	char *address;
	char *specialization;
	Man  *Director;
};

class Shop {
private:
	Shop(Shop &) {};
public:
	List<Commodity *> *PriceList;
	List<Man *>		  *SalersList;
	ShopInformation	  *Information;
	
	Shop();
	~Shop();
};

#endif
Соседние файлы в папке classes