diff options
Diffstat (limited to 'src/net/partyshare.h')
-rw-r--r-- | src/net/partyshare.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/net/partyshare.h b/src/net/partyshare.h index e35ff6382..5fa55c4d9 100644 --- a/src/net/partyshare.h +++ b/src/net/partyshare.h @@ -25,13 +25,16 @@ namespace Net { - enum PartyShare + namespace PartyShare { - UNKNOWN = -1, - NO, - YES, - NOT_POSSIBLE = 2 - }; + enum Type + { + UNKNOWN = -1, + NO, + YES, + NOT_POSSIBLE = 2 + }; + } } // namespace Net #endif // NET_PARTYSHARE_H |