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

0001 #ifndef oxygenlistdemowidget_h
0002 #define oxygenlistdemowidget_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 *
0008 * based on the Null Theme Engine for Gtk+.
0009 * SPDX-FileCopyrightText: 2008 Robert Staudinger <robert.staudinger@gmail.com>
0010 *
0011 * SPDX-License-Identifier: LGPL-2.0-or-later
0012 */
0013 
0014 #include "oxygendemowidget.h"
0015 
0016 namespace Oxygen
0017 {
0018 
0019     class ListDemoWidget: public DemoWidget
0020     {
0021 
0022         public:
0023 
0024         //! constructor
0025         ListDemoWidget( void );
0026 
0027         //! destructor
0028         virtual ~ListDemoWidget( void )
0029         {}
0030 
0031     };
0032 
0033 }
0034 
0035 #endif