comparison main/NetworkPermissionTester.h @ 1613:3f6c18fcc075

Rework network permission tester to note that aggregate info may be used, and tweak for clarity
author Chris Cannam
date Sat, 25 Feb 2017 19:24:13 +0000
parents 55efa5a18814
children
comparison
equal deleted inserted replaced
1612:21befacf6cae 1613:3f6c18fcc075
16 #define NETWORK_PERMISSION_TESTER_H 16 #define NETWORK_PERMISSION_TESTER_H
17 17
18 class NetworkPermissionTester 18 class NetworkPermissionTester
19 { 19 {
20 public: 20 public:
21 NetworkPermissionTester() { } 21 NetworkPermissionTester(bool withOSCSupport) : m_withOSC(withOSCSupport) { }
22 bool havePermission(); 22 bool havePermission();
23
24 private:
25 bool m_withOSC;
23 }; 26 };
24 27
25 #endif 28 #endif
26 29
27 30