~ubuntu-branches/ubuntu/trusty/gtk2-engines-oxygen/trusty-proposed

« back to all changes in this revision

Viewing changes to demo/oxygenversion.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-02-12 06:35:44 UTC
  • mfrom: (1.3.2)
  • Revision ID: package-import@ubuntu.com-20140212063544-nnetktl56v0huubt
Tags: 1.4.3-0ubuntu1
* New upstream release
* One major issue was fixed (basically some dangling
  pointers being wrongly accessed). (LP: #1219844)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef oxygenversion_h
 
2
#define oxygenversion_h
 
3
 
 
4
/*
 
5
* this file is part of the oxygen gtk engine
 
6
* Copyright (c) 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
 
7
* Copyright (c) 2010 Ruslan Kabatsayev <b7.10110111@gmail.com>
 
8
*
 
9
* This library is free software; you can redistribute it and/or
 
10
* modify it under the terms of the GNU Lesser General Public
 
11
* License as published by the Free Software Foundation; either
 
12
* version 2 of the License, or( at your option ) any later version.
 
13
*
 
14
* This library is distributed in the hope that it will be useful,
 
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
17
* Lesser General Public License for more details.
 
18
*
 
19
* You should have received a copy of the GNU Lesser General Public
 
20
* License along with this library; if not, write to the Free
 
21
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
 
22
* MA 02110-1301, USA.
 
23
*/
 
24
 
 
25
#include <string>
 
26
 
 
27
namespace Oxygen
 
28
{
 
29
 
 
30
    class Version
 
31
    {
 
32
        public:
 
33
 
 
34
        //! gtk version
 
35
        static std::string gtkVersion( void );
 
36
 
 
37
        //! lib version
 
38
        static std::string libVersion( void );
 
39
 
 
40
        //! print options
 
41
        static void print( void );
 
42
 
 
43
    };
 
44
 
 
45
}
 
46
 
 
47
 
 
48
#endif