configlib/dbmsjdbc/src/native/StreamStore.h
changeset 1 b538b70cbe51
equal deleted inserted replaced
0:2e8eeb919028 1:b538b70cbe51
       
     1 // Copyright (c) 1998-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 //
       
    15 
       
    16 #ifndef __StreamStore_h__
       
    17 #define __StreamStore_h__
       
    18 #include <e32std.h>
       
    19 #include <s32stor.h>
       
    20 
       
    21 class StreamStore {
       
    22 
       
    23 public:
       
    24 	CStreamStore* iStore;
       
    25 
       
    26 public:
       
    27 	// constructor and destructor do nothing
       
    28 	StreamStore(){};
       
    29 	~StreamStore(){};
       
    30 
       
    31 };
       
    32 
       
    33 #endif