-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessage.h
41 lines (31 loc) · 920 Bytes
/
Message.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
/****************************************************************
FILE: Message.h
AUTHOR: Tommy Deng
s199762338
PURPOSE: Header file for the message object. Contains commonly
used text outputs and other text/formatting related
functions.
****************************************************************/
#ifndef MESSAGE_H
#define MESSAGE_H
#include <iostream>
#include <sstream>
using namespace std;
class Message
{
public:
// Default constructor
Message();
// Destructor
~Message();
// consider between making these function return a string (like
// it is now). Or have them output the string itself. The
// slight difference in usage would be that you wouldn't have
// to write the "cout << ..." in your main code, instead you
// would have something like "message.____()"
string menu();
string invalid();
string tabs(int numTabs);
string exitProgram();
};
#endif // !MESSAGE_H