uiutils/Findutil/inc/FindUtilBase.h
changeset 0 2f259fa3e83a
child 4 8ca85d2f0db7
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 #ifndef __FINDUTILBASE_H__
       
    27 #define __FINDUTILBASE_H__
       
    28 
       
    29 #include <e32base.h>
       
    30 #include "findutil.h"
       
    31 
       
    32 class CFindUtilBase : public CBase, public MFindUtil
       
    33 	{
       
    34 public:
       
    35 
       
    36     inline CFindUtilBase() {}
       
    37     inline ~CFindUtilBase() {}
       
    38 
       
    39 	IMPORT_C virtual void OpenL();
       
    40 	IMPORT_C virtual void Close();
       
    41 protected:
       
    42 	TInt iReferenceCount;
       
    43 	};
       
    44 
       
    45 #endif