~ubuntu-branches/debian/stretch/universalindentgui/stretch

« back to all changes in this revision

Viewing changes to src/UiGuiVersion.h~

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2009-08-20 13:41:45 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090820134145-g5wu2b87qz1i9sy9
Tags: 1.1.0-1
* New upstream release.
* Update debian/control:
  - Bump quilt and debhelper build-dependency versions.
  - Bump Standards-Version to 3.8.3 (no changes needed).
* Convert debian/rules to dh usage.
* Rename debian/universalindentgui.lintian to
  debian/universalindentgui.lintian-overrides for dh_lintian usage.
* Add debian/README.source file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2006-2009 by Thomas Schweitzer                          *
 
3
 *   thomas-schweitzer(at)arcor.de                                         *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License version 2.0 as   *
 
7
 *   published by the Free Software Foundation.                            *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program in the file LICENSE.GPL; if not, write to the *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
18
 ***************************************************************************/
 
19
 
 
20
#ifndef UIGUIVERSION_H
 
21
#define UIGUIVERSION_H
 
22
 
 
23
class QString;
 
24
 
 
25
// Define the version number here. Update this as the last file before a release.
 
26
#define PROGRAM_VERSION 1.0.2
 
27
#define PROGRAM_VERSION_STRING "1.0.2"
 
28
#define RESOURCE_VERSION 1,0,2,0
 
29
#define RESOURCE_VERSION_STRING "1,0,2,0\0"
 
30
#define PROGRAM_REVISION "$Revision: 930 $"
 
31
 
 
32
namespace UiGuiVersion {
 
33
 
 
34
    QString getBuildDate();
 
35
    QString getBuildRevision();
 
36
 
 
37
}
 
38
 
 
39
#endif  // UIGUIVERSION_H