securityanddataprivacytools/securitytools/certapp/utils/filestream.h
changeset 0 2c201484c85f
child 8 35751d3474b7
equal deleted inserted replaced
-1:000000000000 0:2c201484c85f
       
     1 #ifndef __FILESTREAM_H__
       
     2 #define __FILESTREAM_H__/*
       
     3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 * All rights reserved.
       
     5 * This component and the accompanying materials are made available
       
     6 * under the terms of the License "Eclipse Public License v1.0"
       
     7 * which accompanies this distribution, and is available
       
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 *
       
    10 * Initial Contributors:
       
    11 * Nokia Corporation - initial contribution.
       
    12 *
       
    13 * Contributors:
       
    14 *
       
    15 * Description: 
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 /**
       
    23  @file
       
    24  @internalComponent
       
    25 */
       
    26 
       
    27 class FileWriteStream : public RWriteStream
       
    28 	{
       
    29 public:
       
    30 	FileWriteStream(const std::string &aFileName);
       
    31 	~FileWriteStream();
       
    32 	};
       
    33 
       
    34 class FileReadStream : public RReadStream
       
    35 	{
       
    36 public:
       
    37 	FileReadStream(const std::string &aFileName, bool aSpecialTextHandling = false);
       
    38 	~FileReadStream();
       
    39 	};
       
    40 
       
    41 #endif