mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I2cf5bf225b76f4c1541954651f3a7544a14e0cec
22 lines
354 B
C++
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_
|