Add 2009 to copyright and fix its format
[skype-call-recorder.git] / common.h
blobd4c6aa0b951266ad511bd97bbe81149a1fb7de22
1 /*
2 Skype Call Recorder
3 Copyright 2008 - 2009 by jlh (jlh at gmx dot ch)
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2 of the License, version 3 of
8 the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 The GNU General Public License version 2 is included with the source of
20 this program under the file name COPYING. You can also get a copy on
21 http://www.fsf.org/
24 #ifndef COMMON_H
25 #define COMMON_H
27 #define PROGRAM_NAME "Skype Call Recorder"
29 class Recorder;
30 class QString;
32 extern void debug(const QString &);
34 extern Recorder *recorderInstance;
36 // this is provided by the generated version.cpp file
37 extern const char *const recorderCommit;
38 extern const char *const recorderDate;
39 extern const char *const recorderVersion;
41 #define DISABLE_COPY_CONSTRUCTOR(c) \
42 private: c(const c &)
43 #define DISABLE_ASSIGNMENT_OP(c) \
44 private: c &operator=(const c &)
45 #define DISABLE_COPY_AND_ASSIGNMENT(c) \
46 DISABLE_COPY_CONSTRUCTOR(c); \
47 DISABLE_ASSIGNMENT_OP(c)
49 const long skypeSamplingRate = 16000;
50 extern const char *const websiteURL;
52 #endif