-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageITA2.h
60 lines (34 loc) · 1.19 KB
/
MessageITA2.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
57
58
59
/*
* File: MessageITA2.h
* Author: kavlar
*
* Created on 20140821
*/
#ifndef METCODE_MESSAGEITA2_H
#define METCODE_MESSAGEITA2_H
#include "Message.h"
namespace MetCode
{
class MessageITA2 : public Message
{
public:
MessageITA2();
virtual ~MessageITA2();
private:
MessageITA2(const MessageITA2& orig);
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 ();
private:
};
};
#endif /* METCODE_MESSAGEITA2_H */