15 lines
224 B
C++
15 lines
224 B
C++
#ifndef BOLT_STRING_HPP
|
|
#define BOLT_STRING_HPP
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace bolt {
|
|
|
|
using ByteString = std::string;
|
|
|
|
using ByteStringView = std::string_view;
|
|
|
|
}
|
|
|
|
#endif // of #ifndef BOLT_STRING_HPP
|