commsconfig/commsdatabaseshim/commdbshim/INC/CDBSTORE.INL
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // CStoreableOverrideSettings class inline functions
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @deprecated since v9.1. Functionality is replaced with commsdat.
       
    21 */
       
    22 
       
    23 #ifndef __CDBSTORE_INL__
       
    24 #define __CDBSTORE_INL__
       
    25 
       
    26 #include <cdbstore.h>
       
    27 
       
    28 inline CBufStore* CStoreableOverrideSettings::GetStore() const
       
    29 /** 
       
    30 Accesses the buffer store.
       
    31 @deprecated 7.0 There is no need for this store - none of the above functions use this
       
    32 store. If a client needs a store it should create its own.
       
    33 @return The pointer to the memory store object.
       
    34 */
       
    35 	{
       
    36 	return iStore;
       
    37 	}
       
    38 
       
    39 #endif
       
    40