os/security/securityanddataprivacytools/securitytools/certapp/utils/filestream.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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  @file
    22  @internalComponent
    23 */
    24 
    25 class FileWriteStream : public RWriteStream
    26 	{
    27 public:
    28 	FileWriteStream(const std::string &aFileName);
    29 	~FileWriteStream();
    30 	};
    31 
    32 class FileReadStream : public RReadStream
    33 	{
    34 public:
    35 	FileReadStream(const std::string &aFileName, bool aSpecialTextHandling = false);
    36 	~FileReadStream();
    37 	};
    38 
    39 #endif