annotate src/NetworkPermissionTester.h @ 377:a2f5c095459a warnfix_no_size_t

Close old branch warnfix_no_size_t
author Chris Cannam
date Mon, 21 Jul 2014 13:04:43 +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