#ifndef _PRICELIST_H_ #define _PRICELIST_H_ #include #include "../include/MTGDefinitions.h" #include "../include/MTGDeck.h" #include class MTGAllCards; class PriceList{ private: MTGAllCards * collection; string filename; map prices; public: PriceList(const char * file, MTGAllCards * _collection); ~PriceList(); int save(); int getPrice(int cardId); int setPrice(int cardId, int price); }; #endif