#include <boost/shared_ptr.hpp>
-namespace isc::util {
+namespace isc {
+namespace util {
/// @brief The @c InputBuffer class is a buffer abstraction for manipulating read-only data.
///
/// @brief Type of pointers to output buffers.
typedef boost::shared_ptr<OutputBuffer> OutputBufferPtr;
-} // namespace isc::util
+} // namespace util
+} // namespace isc
#endif // BUFFER_H
#include <boost/lexical_cast.hpp>
-namespace isc::util::str {
+namespace isc {
+namespace util {
+namespace str {
/// @brief A Set of C++ Utilities for Manipulating Strings
while (end != begin && *(end - 1) == trim_val) {
--end;
}
+
return (end);
}
std::string
dumpAsHex(const uint8_t* data, size_t length);
-} // namespace isc::util::str
+} // namespace str
+} // namespace util
+} // namespace isc
#endif // KEA_UTIL_STR_H