File indexing completed on 2024-05-05 05:34:57

0001 #ifndef oxygenversion_h
0002 #define oxygenversion_h
0003 
0004 /*
0005 * this file is part of the oxygen gtk engine
0006 * SPDX-FileCopyrightText: 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
0007 * SPDX-FileCopyrightText: 2010 Ruslan Kabatsayev <b7.10110111@gmail.com>
0008 *
0009 * SPDX-License-Identifier: LGPL-2.0-or-later
0010 */
0011 
0012 #include <string>
0013 
0014 namespace Oxygen
0015 {
0016 
0017     class Version
0018     {
0019         public:
0020 
0021         //! gtk version
0022         static std::string gtkVersion( void );
0023 
0024         //! lib version
0025         static std::string libVersion( void );
0026 
0027         //! print options
0028         static void print( void );
0029 
0030     };
0031 
0032 }
0033 
0034 
0035 #endif