Re: [Boost-users] Can boost help me organize/parse lots of binary data?
21 Feb
2013
21 Feb
'13
11:23 a.m.
Chris,
class Item { virtual void Decode(istream& Stream) = 0; }
class Double : public Item class String : public Item
class EmployeePacket { std::vector
- Items; ...
Maybe boost::any will do better here ? http://www.boost.org/doc/libs/1_53_0/doc/html/any.html
21 Feb
21 Feb
11:34 a.m.
New subject: Can boost help me organize/parse lots of binary data?
On 21 February 2013 11:23, Gabriel Bizzotto
class Item { virtual void Decode(istream& Stream) = 0; }
class Double : public Item class String : public Item
class EmployeePacket { std::vector
- Items; ...
Maybe boost::any will do better here ?
And for parsing, Boost.Spirit. Best regards, -- Mateusz Loskot, http://mateusz.loskot.net
4280
Age (days ago)
4280
Last active (days ago)
1 comments
2 participants
participants (2)
-
Gabriel Bizzotto
-
Mateusz Loskot