Skip to content

Instantly share code, notes, and snippets.

@MuddyBootsCode
Created April 10, 2018 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MuddyBootsCode/60024364271f155c6597ad12b15f0749 to your computer and use it in GitHub Desktop.
Save MuddyBootsCode/60024364271f155c6597ad12b15f0749 to your computer and use it in GitHub Desktop.
header file for group project 13-20
#ifndef PHARMACY_H
#define PHARMACY_H
#include<iostream>;
using namespace std;
class Pharmacy
{
private:
double costs[5]; // The side facing up
public:
Pharmacy(); // Constructor
double value; //Cost of Drug
double getValue(); // Gets Value of Pharmacy Item
};
#endif
#pragma once
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment