diff -r 1f1fcd7e941c -r 8dde790cab74 cmmanager/cppluginutils/src/cpipv6filter.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cmmanager/cppluginutils/src/cpipv6filter.cpp Fri May 14 10:52:16 2010 +0300 @@ -0,0 +1,76 @@ +/* +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0"" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* IPv6 input filter implementation. +* +*/ + +// System includes +#include + +// User includes +#include "cpipv6filter.h" + +/*! + \class CpIpv6Filter + \brief IPv6 input filter implementation. +*/ + +// External function prototypes + +// Local constants + +// ======== LOCAL FUNCTIONS ======== + +// ======== MEMBER FUNCTIONS ======== + +/*! + Returns static instance of the class. +*/ +CpIpv6Filter* CpIpv6Filter::instance() +{ + static CpIpv6Filter myInstance; + return &myInstance; +} + +/*! + Constructor. +*/ +CpIpv6Filter::CpIpv6Filter() +{ +} + +/*! + Destructor. +*/ +CpIpv6Filter::~CpIpv6Filter() +{ +} + +/*! + Returns true if given character is valid for an IPv6 address. +*/ +bool CpIpv6Filter::filter(QChar aChar) +{ + if ((aChar >= 'a' && aChar <= 'f') + || (aChar >= 'A' && aChar <= 'F') + || (aChar >= '0' && aChar <= '9')) { + return true; + } + if (aChar == ':' || aChar == '.') { + return true; + } + + return false; +}