File indexing completed on 2024-05-12 05:34:35

0001 #ifndef oxygenpanedengine_h
0002 #define oxygenpanedengine_h
0003 /*
0004 * this file is part of the oxygen gtk engine
0005 * SPDX-FileCopyrightText: 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
0006 *
0007 * SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 
0011 #include "oxygengenericengine.h"
0012 #include "oxygenpaneddata.h"
0013 
0014 #include <gtk/gtk.h>
0015 #include <set>
0016 
0017 namespace Oxygen
0018 {
0019     //! forward declaration
0020     class Animations;
0021 
0022     //! stores data associated to vertical and horizontal paned
0023     class PanedEngine: public GenericEngine<PanedData>
0024     {
0025 
0026         public:
0027 
0028         //! constructor
0029         PanedEngine( Animations* widget ):
0030             GenericEngine<PanedData>( widget )
0031             {}
0032 
0033         //! destructor
0034         virtual ~PanedEngine( void )
0035         {}
0036 
0037     };
0038 
0039 }
0040 
0041 #endif