cmmanager/cppluginutils/inc/cpipv6filter.h
changeset 27 489cf6208544
equal deleted inserted replaced
23:7ec726f93df1 27:489cf6208544
       
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0""
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * IPv6 input filter header file.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef CPIPV6FILTER_H
       
    20 #define CPIPV6FILTER_H
       
    21 
       
    22 // System includes
       
    23 #include <HbInputFilter>
       
    24 
       
    25 // User includes
       
    26 
       
    27 // Forward declarations
       
    28 
       
    29 // External data types
       
    30 
       
    31 // Constants
       
    32 
       
    33 // Class declaration
       
    34 class CpIpv6Filter : public HbInputFilter
       
    35 {
       
    36 public:
       
    37     static CpIpv6Filter* instance();
       
    38     virtual ~CpIpv6Filter();
       
    39     virtual bool filter(QChar aChar);
       
    40 
       
    41 signals:
       
    42 
       
    43 public slots:
       
    44 
       
    45 protected:
       
    46 
       
    47 protected slots:
       
    48 
       
    49 private:
       
    50     Q_DISABLE_COPY(CpIpv6Filter)
       
    51 
       
    52     CpIpv6Filter();
       
    53 
       
    54 private slots:
       
    55     
       
    56 private: // data
       
    57 };
       
    58 
       
    59 #endif // CPIPV6FILTER_H