~ubuntu-branches/ubuntu/vivid/smplayer/vivid-proposed

« back to all changes in this revision

Viewing changes to src/version.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-10-09 12:02:50 UTC
  • mfrom: (20.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20131009120250-a51t46ffycbmum44
Tags: 0.8.6-2
* Team upload.
* Remove doc-base document, faq.html file is no longer
  provided. (Closes: #725829)
* Disable updates checking mechanism.
* Add licensing information on libmaia, split sources stanzas from
  License ones.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
 
2
    Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
3
3
 
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
16
16
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
*/
18
18
 
19
 
#ifndef _VERSION_H_
20
 
#define _VERSION_H_
 
19
#ifndef VERSION_H
 
20
#define VERSION_H
21
21
 
22
22
#include <QString>
23
23
 
24
 
QString smplayerVersion();
 
24
class Version {
 
25
public:
 
26
        static QString printable();
 
27
        static QString stable();
 
28
        static QString revision();
 
29
        static QString with_revision() { return stable() + "." + revision(); }
 
30
};
25
31
 
26
32
#endif
27
33