Files
nearby/cpp/core/internal/pcp.h
T
Alexey Polyudov 204f76077d nearby: snapshot as of cl/296436629
Signed-off-by: Alexey Polyudov <apolyudov@google.com>
Change-Id: I2cf5bf225b76f4c1541954651f3a7544a14e0cec
2020-04-04 12:52:31 -07:00

22 lines
354 B
C++

#ifndef CORE_INTERNAL_PCP_H_
#define CORE_INTERNAL_PCP_H_
namespace location {
namespace nearby {
namespace connections {
struct PCP {
enum Value {
UNKNOWN = 0,
P2P_STAR = 1,
P2P_CLUSTER = 2,
P2P_POINT_TO_POINT = 3,
};
};
} // namespace connections
} // namespace nearby
} // namespace location
#endif // CORE_INTERNAL_PCP_H_