- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
class NetGetPlmnListReply: public Message {
public:
virtual uint8_t command() const;
virtual uint8_t subcommand() const;
virtual RequestType requestType() const;
virtual bool deliver(IUnsolicitedReceiver *receiver);
static inline bool isTypeOf(Message *message) {
return message->command() == 8 && message->subcommand() == 4;
}
std::string inspect() const;
bool writeToStream(DataStream &stream);
bool readFromStream(DataStream &stream);
inline uint8_t count() const { return m_count; }
inline void setCount(uint8_t count) { m_count = count; }
class PlmnListItem {
public:
std::string inspect() const;
bool writeToStream(DataStream &stream);
bool readFromStream(DataStream &stream);
enum Status {
Available = 2,
Current = 3,
Forbidden = 4,
};
inline Status status() const { return (Status) m_status; }
inline void setStatus(Status status) { m_status = (uint8_t) status; }
inline const std::vector<unsigned char> &plmn() const { return m_plmn; }
inline void setPlmn(const std::vector<unsigned char> &plmn) { m_plmn = plmn; }
private:
uint8_t m_status;
std::vector<unsigned char> m_plmn;
};
inline const std::vector<PlmnListItem> &plmnList() const { return m_plmnList; }
inline void setPlmnList(const std::vector<PlmnListItem> &plmnList) { m_plmnList = plmnList; }
private:
uint8_t m_count;
std::vector<PlmnListItem> m_plmnList;
};
bormand 18.08.2012 18:23 # 0
HaskellGovno 18.08.2012 19:55 # −4
vistefan 18.08.2012 23:15 # 0
HaskellGovno 18.08.2012 23:22 # 0
vistefan 19.08.2012 09:59 # +4
bormand 19.08.2012 10:01 # +2
HaskellGovno 19.08.2012 10:36 # −2
bormand 19.08.2012 15:24 # +1
Grindars 18.08.2012 20:05 # 0
bormand 18.08.2012 20:23 # +1
eth0 18.08.2012 20:54 # +4
Надо сделать сайт для генераторов. Чтобы они, так сказать, делились опытом и ситуациями и могли посмеяться над собой.
- Вот Васька-то нагенерировал, я как посмотрел - не вылезал ицпацтала.
- Это фигня, вот тут как-то Ляо триста мегабайт копипасты навалил на бейсике.
HaskellGovno 18.08.2012 22:43 # −1
Нам не страшен серый волк.
Я в говнокоде знаю толк.