annotate main/NetworkPermissionTester.h @ 698:ee97c742d184 tip

Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author Chris Cannam
date Thu, 27 Aug 2020 15:58:43 +0100
parents f52766aa747b
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