//InventoryItem class file THIS IS THE CLASS FILE CPP FILE //COMING...................................
#ifndef INVENTORY_H
#define INVENTORY_H
#include %26lt;string%26gt;
using namespace std;
class InventoryItem
{
private:
string description;
string partNo;
int qty;
public:
void setDescription(string desc)
{description = desc;}
void setPartNumber ( string pNo)
{partNo = pNo; }
void setQTY ( int q)
{ qty = q; }
string getDescription() const
{ return description;}
string getPartNumber() const
{ return partNo;}
int getQTY() const
{ return qty; }
};
#endif
Please help PLEASE HELP IMMEDIATLY NEEDED FINAL PROJECT DUe tommorow c++ C++ !?!!!!!!! NEED GURU?
wtf this is jibberish
elaborate
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment