File indexing completed on 2024-04-21 14:55:45

0001 /* vi: ts=8 sts=4 sw=4
0002  *
0003  * kicontheme.cpp: Lowlevel icon theme handling.
0004  *
0005  * This file is part of the KDE project, module kdecore.
0006  * Copyright (C) 2000 Geert Jansen <jansen@kde.org>
0007  *                    Antonio Larrosa <larrosa@kde.org>
0008  *
0009  * This library is free software; you can redistribute it and/or
0010  * modify it under the terms of the GNU Library General Public
0011  * License version 2 as published by the Free Software Foundation.
0012  *
0013  * This library is distributed in the hope that it will be useful,
0014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0016  * Library General Public License for more details.
0017  *
0018  * You should have received a copy of the GNU Library General Public License
0019  * along with this library; see the file COPYING.LIB.  If not, write to
0020  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0021  * Boston, MA 02110-1301, USA.
0022  */
0023 
0024 #include "k3icon_p.h"
0025 
0026 K3Icon::K3Icon()
0027 {
0028     size = 0;
0029 }
0030 
0031 K3Icon::~K3Icon()
0032 {
0033 }
0034 
0035 bool K3Icon::isValid() const
0036 {
0037     return size != 0;
0038 }
0039