OTPNitro
 All Classes Files Functions Variables Macros
text.h
Go to the documentation of this file.
1 #include <iostream>
2 
3 using namespace std;
4 
8 class Text {
9  public:
11  string msg;
13  string book;
15  string from;
17  int page;
18 
19  void replaceAll(string&, const string&, const string&);
20  void create(int,string,string,string);
21  string print(int);
22  string encodeB26(unsigned char *, long);
23  void decodeB26(unsigned char *, string);
24  void parse(string);
25 };
26