homescreenapp/serviceproviders/hsmenuserviceprovider/tsrc/t_hsmenuserviceprovider/inc/canotifierfilter.h
changeset 96 458d8c8d9580
child 97 66b5fe3c07fd
equal deleted inserted replaced
92:6727c5d0afc7 96:458d8c8d9580
       
     1 /*
       
     2  * Copyright (c) 2009 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: canotifierfilter.h
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CANOTIFIERFILTER_H
       
    19 #define CANOTIFIERFILTER_H
       
    20 
       
    21 #include <QList>
       
    22 
       
    23 #include <cadefs.h>
       
    24 
       
    25 
       
    26 
       
    27 class CaQuery;
       
    28 
       
    29 class CaNotifierFilter
       
    30 {
       
    31 
       
    32 public:
       
    33 
       
    34     CaNotifierFilter() {}
       
    35     virtual ~CaNotifierFilter() {}
       
    36 
       
    37 
       
    38     QList<int> getIds() const {return mIds;}
       
    39     void setIds(const QList<int> &ids) {mIds = ids;}
       
    40 
       
    41     EntryRoles getEntryRole() const;
       
    42     void setEntryRole(EntryRoles entryRole);
       
    43 
       
    44     QStringList getTypeNames() const;
       
    45     void setTypeNames(const QStringList &typeNames);
       
    46 
       
    47     QList<int> mIds;
       
    48 };
       
    49 
       
    50 #endif // CANOTIFIERFILTER_H