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
34
35
36
37
38
/********************************************************************
*
*	File:		gfCCatalogueItem.h
*
*	Purpose:	In item available for purchase
*
*********************************************************************/

#ifndef gfCCatalogueItemhdr
#define gfCCatalogueItemhdr

#include <map>
#include "../gfICatalogueEntry.h"

class gfCCatalogueItem : public gfICatalogueEntry
{
	friend class gfCCatalogueCatalogue;

public:

#if !defined fsRELEASE
	fsS32 totalCostGet() const override;
#endif

	const fsStr& paramGet(const fsStr& pKey) const ;

protected:

	gfCCatalogueItem(std::map<fsStr, fsStr> &pParams);

	virtual ~gfCCatalogueItem();<--- Destructor in derived class

	std::map<fsStr, fsStr> mParams;

private:
};

#endif