tzwrapper.cc: fixed use of iterator after erase
[barry.git] / src / r_pin_message.h
blob9156c62094ec9aefa37112d0222072563a28ee22
1 ///
2 /// \file r_pin_message.h
3 /// Blackberry database record parser class for pin message records.
4 ///
6 /*
7 Copyright (C) 2005-2013, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2007, Brian Edginton (edge@edginton.net)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_RECORD_PIN_MESSAGE_H__
24 #define __BARRY_RECORD_PIN_MESSAGE_H__
26 #include "dll.h"
27 #include "r_message_base.h"
29 namespace Barry {
32 // NOTE: All classes here must be container-safe! Perhaps add sorting
33 // operators in the future.
36 /// \addtogroup RecordParserClasses
37 /// @{
39 class BXEXPORT PINMessage : public MessageBase
41 public:
42 PINMessage()
44 // must call this again, since base class can't call ours
45 Clear();
48 void Clear()
50 MessageBase::Clear();
52 RecType = GetDefaultRecType();
53 RecordId = 0;
56 // database name
57 static const char * GetDBName() { return "PIN Messages"; }
58 static uint8_t GetDefaultRecType() { return 0; }
60 // Generic Field Handle support
61 static const FieldHandle<PINMessage>::ListT& GetFieldHandles();
64 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const PINMessage &msg) {
65 msg.Dump(os);
66 return os;
69 /// @}
71 } // namespace Barry
73 #endif // __BARRY_RECORD_PIN_MESSAGE_H__