| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| * Copyright (c) 2013, Regents of the University of California |
| * BSD license, See the LICENSE file for more information |
| * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| #include <boost/shared_ptr.hpp> |
| * @brief Class representing a general-use binary blob |
| class Blob : public std::vector<char> |
| * @brief Creates an empty blob |
| Blob (const void *buf, size_t length) |
| : std::vector<char> (reinterpret_cast<const char*> (buf), reinterpret_cast<const char*> (buf) + length) |
| * @brief Get pointer to the first byte of the binary blob |
| * @brief Get const pointer to the first byte of the binary blob |