-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBulletinTAC.h
61 lines (35 loc) · 1.3 KB
/
BulletinTAC.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
60
/*
* File: BulletinTAC.h
* Author: kavlar
*
* Created on 20140821
*/
#ifndef METCODE_BULLETINTAC_H
#define METCODE_BULLETINTAC_H
#include "Bulletin.h"
namespace MetCode
{
class BulletinTAC : public Bulletin
{
public:
BulletinTAC();
virtual ~BulletinTAC();
private:
BulletinTAC(const BulletinTAC& orig);
protected:
virtual bool canIdentify(const std::string& headFragment) const throw ();
virtual bool onTTAAii(std::string& TTAAii) const throw ();
virtual bool onTTAAii(std::string& TTAAii, StreamWriter& streamwriter) throw ();
virtual bool onCCCC(std::string& CCCC) const throw ();
virtual bool onCCCC(std::string& CCCC, StreamWriter& streamwriter) throw ();
virtual bool onYYGGgg(std::string& YYGGgg) const throw ();
virtual bool onYYGGgg(std::string& YYGGgg, StreamWriter& streamwriter) throw ();
virtual bool onBBB(std::string& BBB) const throw ();
virtual bool onBBB(std::string& BBB, StreamWriter& streamwriter) throw ();
virtual bool onFMCode(std::string& group) const throw ();
virtual bool onFMCode(std::string& group, StreamWriter& streamwriter) throw ();
virtual bool onEND(std::string& end) const throw ();
virtual bool onEND(std::string& end, StreamWriter& streamwriter) throw ();
};
};
#endif /* METCODE_BULLETINTAC_H */