annotate src/NetworkPermissionTester.h @ 516:449a0355f864 v2.0_osx_deploy

Deployment fixes. Qt on OSX now seems to depend on QtDBus, so copy that in, and also fail if anything is found to depend on an absent Qt framework.
author Chris Cannam
date Fri, 23 Oct 2015 08:50:39 +0100
parents a67f0e5ec654
children
rev   line source
Chris@95 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@95 2
Chris@95 3 /*
Chris@95 4 Tony
Chris@95 5 An intonation analysis and annotation tool
Chris@95 6 Centre for Digital Music, Queen Mary, University of London.
Chris@95 7
Chris@95 8 This program is free software; you can redistribute it and/or
Chris@95 9 modify it under the terms of the GNU General Public License as
Chris@95 10 published by the Free Software Foundation; either version 2 of the
Chris@95 11 License, or (at your option) any later version. See the file
Chris@95 12 COPYING included with this distribution for more information.
Chris@95 13 */
Chris@95 14
Chris@95 15 #ifndef NETWORK_PERMISSION_TESTER_H
Chris@95 16 #define NETWORK_PERMISSION_TESTER_H
Chris@95 17
Chris@95 18 class NetworkPermissionTester
Chris@95 19 {
Chris@95 20 public:
Chris@95 21 NetworkPermissionTester() { }
Chris@95 22 bool havePermission();
Chris@95 23 };
Chris@95 24
Chris@95 25 #endif
Chris@95 26
Chris@95 27