#ifndef VENDINGMACHINE_H #define VENDINGMACHINE_H #define NUM_TYPES 6 #define MAX_CANS 10 #include using namespace std; class VendingMachine { public: VendingMachine(void); ~VendingMachine(); void DisplayTypes(void); void Vend (int type); void Stock (int type); void WithdrawCash(); private: string names[NUM_TYPES]; int sodaCount[NUM_TYPES]; double cash; }; #endif