Warning, file /include/gloo/transport/address.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include <string>
0012 #include <vector>
0013
0014 namespace gloo {
0015 namespace transport {
0016
0017 class Address {
0018 public:
0019
0020 static constexpr auto kMaxByteSize = 192;
0021
0022 virtual ~Address() = 0;
0023
0024 virtual std::string str() const = 0;
0025
0026 virtual std::vector<char> bytes() const = 0;
0027 };
0028
0029 }
0030 }