Changeset 10287 for trunk/FACT++/src/Converter.h
- Timestamp:
- 04/05/11 11:25:05 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Converter.h
r10270 r10287 52 52 std::vector<T> Get(const std::string &str) const; 53 53 template <class T> 54 T Get(const void *d, int size) const;54 T Get(const void *d, size_t size) const; 55 55 56 56 … … 82 82 static FormatList Compile(const std::string &fmt, bool strict=false); 83 83 84 std::string GetString(const void *d, int size) const;85 std::vector<char> GetVector(const void *d, int size) const;86 std::vector<boost::any> GetAny(const void *d, int size) const;84 std::string GetString(const void *d, size_t size) const; 85 std::vector<char> GetVector(const void *d, size_t size) const; 86 std::vector<boost::any> GetAny(const void *d, size_t size) const; 87 87 88 88 std::vector<boost::any> GetAny(const std::string &str) const; 89 89 std::vector<char> GetVector(const std::string &str) const; 90 90 91 static std::string GetHex(const void *d, int size);91 static std::string GetHex(const void *d, size_t size, size_t chunk=1); 92 92 93 93 /*
Note:
See TracChangeset
for help on using the changeset viewer.