-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlabel.h
51 lines (46 loc) · 2.19 KB
/
label.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
43
44
45
46
47
48
49
50
51
/**
* @author Stephen M. Reaves
* @headerfile label.h
* @date Sept 2, 2018
* @brief Defines constant strings used project wide
*/
#ifndef LABEL_H
#define LABEL_H
#include <string>
using namespace std;
const int kDummyID = -1;
const string kDummyLen = "Fake Length";
const string kDummyCut = "Fake Cut";
const string kDummyName = "Fake Name";
const string kMatPrompt = "Please enter the material: ";
const string kColPrompt = "Please enter the collar type: ";
const string kCutPrompt = "Please enter the cut: ";
const string kLenPrompt = "Please enter the length: ";
const string kDummyStyle = "Fake Style";
const string kBeltPrompt = "Would you like to add a belt? [y/n] ";
const string kDummyCollar = "Fake Collar";
const string kShirtPrompt = "Would you like to add a shirt? [y/n] ";
const string kPantsPrompt = "Would you like to add a pair of pants? [y/n] ";
const string kShoesPrompt = "Would you like to add a pair of shoes? [y/n] ";
const string kSocksPrompt = "Would you like to add a pair of socks? [y/n] ";
const string kStylePrompt = "Please enter the style: ";
const string kDummyPattern = "Fake Pattern";
const string kClosetPrompt = "Enter a Closet Name: ";
const string kDummyMaterial = "Fake Material";
const string kDummySecColor = "Fake Sec Color";
const string kDummyFileName = "FakeFileName";
const string kPatternPrompt = "Please enter the pattern: ";
const string kDummyPrimColor = "Fake Prim Color";
const string kDummyTertColor = "Fake Tert Color";
const string kSecColorPrompt = "Please enter the secondary color: ";
const string kBeltNamePrompt = "Please enter the name of the belt: ";
const string kDummySleeveLen = "Fake Sleeve Length";
const string kDummyClosetName = "Fake Closet Name";
const string kShirtNamePrompt = "Please enter the name of the shirt: ";
const string kPantsNamePrompt = "Please enter the name of the pants: ";
const string kShoesNamePrompt = "Please enter the name of the shoes: ";
const string kSocksNamePrompt = "Please enter the name of the socks: ";
const string kPrimColorPrompt = "Please enter the primary color: ";
const string kTertColorPrompt = "Please enter the tertiary color: ";
const string kSleeveLenPrompt = "Please enter the sleeve length: ";
#endif /* LABEL_H */