-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsocks.h
42 lines (31 loc) · 761 Bytes
/
socks.h
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
39
40
41
42
/******************************************************************************
* File Name: socks.h
* Created by: Stephen M. Reaves
* Date Last Modified:
*
* Summary: Header File for 'Socks' class in the Closet++ program
*
*/
#include <cstdlib>
#include <iostream>
#include <string>
#include "clothes.h"
using namespace std;
#ifndef SOCKS_H
#define SOCKS_H
class Socks : public Clothes {
public:
// Constructors and Deconstructors
Socks();
Socks(int id, string name, string prim_color, string sec_color,
string tert_color, string pattern);
virtual ~Socks();
// General Functions
// bool IsDirty();
string ToXML() const;
string ToString() const;
private:
// Variables
// Private Functions
};
#endif /* SOCKS_H */