1/* This file is part of the KDE project
2 Copyright 2006,2007 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
3 Copyright 1998,1999 Torben Weis <weis@kde.org>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20
21#include "Format.h"
22
23using namespace Calligra::Sheets;
24
25bool Format::isDate(Type fmt)
26{
27 return ((fmt == Format::ShortDate) || (fmt == Format::TextDate) ||
28 ((fmt >= Format::DatesBegin) && (fmt <= DatesEnd)));
29}
30
31bool Format::isTime(Type fmt)
32{
33 return ((fmt >= TimesBegin) && (fmt <= TimesEnd));
34}
35
36bool Format::isFraction(Type fmt)
37{
38 return ((fmt >= FractionsBegin) && (fmt <= FractionsEnd));
39}
40