Chris@663: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@663: Chris@663: /* Chris@663: Sonic Visualiser Chris@663: An audio file viewer and annotation editor. Chris@663: Centre for Digital Music, Queen Mary, University of London. Chris@663: Chris@663: This program is free software; you can redistribute it and/or Chris@663: modify it under the terms of the GNU General Public License as Chris@663: published by the Free Software Foundation; either version 2 of the Chris@663: License, or (at your option) any later version. See the file Chris@663: COPYING included with this distribution for more information. Chris@663: */ Chris@663: Chris@663: #ifndef NETWORK_PERMISSION_TESTER_H Chris@663: #define NETWORK_PERMISSION_TESTER_H Chris@663: Chris@663: class NetworkPermissionTester Chris@663: { Chris@663: public: Chris@1613: NetworkPermissionTester(bool withOSCSupport) : m_withOSC(withOSCSupport) { } Chris@663: bool havePermission(); Chris@1613: Chris@1613: private: Chris@1613: bool m_withOSC; Chris@663: }; Chris@663: Chris@663: #endif Chris@663: Chris@663: