-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageAWSS.h
57 lines (34 loc) · 1.18 KB
/
MessageAWSS.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
52
53
54
55
56
/*
* File: MessageAWSS.h
* Author: kavlar
*
* Created on 20140914
*/
#ifndef METCODE_MESSAGEAWSS_H
#define METCODE_MESSAGEAWSS_H
#include "Message.h"
namespace MetCode
{
class MessageAWSS : public Message
{
public:
MessageAWSS();
virtual ~MessageAWSS();
public:
MessageAWSS(const MessageAWSS& orig);
private:
protected:
virtual bool canIdentify(const std::string& headFragment) const throw ();
virtual bool onHEAD(std::string& head) const throw ();
virtual bool onHEAD(std::string& head, StreamWriter& streamwriter) throw ();
virtual bool onBEGIN(std::string& begin) const throw ();
virtual bool onBEGIN(std::string& begin, StreamWriter& streamwriter) throw ();
virtual bool onSEQ(std::string& seq) const throw ();
virtual bool onSEQ(std::string& seq, StreamWriter& streamwriter) throw ();
virtual bool onBulletin(std::string& bulletinFragment) const throw ();
virtual bool onBulletin(std::string& bulletinFragment, StreamWriter& streamwriter) throw ();
virtual bool onEND(std::string& end) const throw ();
virtual bool onEND(std::string& end, StreamWriter& streamwriter) throw ();
};
};
#endif /* METCODE_MESSAGEAWSS_H */