Changeset 511
- Timestamp:
- 04/10/06 16:07:51 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
library/trunk/modules/service-gotek2/GotekPacket.cpp
r510 r511 114 114 115 115 116 void GotekPacket::writeRaw(void const *p, uint32_t s) 117 { 118 checkBadness(); 119 assumeWrite(); 120 121 m_data.append((const char *)p, s); 122 } 123 124 116 125 void GotekPacket::writeString(string const& s) 117 126 { library/trunk/modules/service-gotek2/GotekPacket.hpp
r508 r511 5 5 #include <inttypes.h> 6 6 #include <string> 7 8 7 9 8 namespace library … … 24 23 25 24 void writeRaw(string const& r); 25 void writeRaw(void const *p, uint32_t s); 26 26 void writeString(string const& s); 27 27 void writeUInt8(uint8_t i);
