File indexing completed on 2024-04-28 05:32:21

0001 #ifndef oxygentilesetcache_h
0002 #define oxygentilesetcache_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 * SPDX-License-Identifier: LGPL-2.0-or-later
0009 */
0010 
0011 #include "oxygencache.h"
0012 
0013 namespace Oxygen
0014 {
0015 
0016     // forward declaration
0017     class TileSet;
0018 
0019     template< typename T>
0020     class TileSetCache: public Cache<T, TileSet>
0021     {
0022 
0023         public:
0024 
0025         //! constructor
0026         TileSetCache( size_t size = 100 ):
0027             Cache<T, TileSet>( size )
0028         {}
0029 
0030         //! destructor
0031         virtual ~TileSetCache( void )
0032         {}
0033 
0034     };
0035 
0036 }
0037 
0038 #endif