secureswitools/swisistools/source/sisxlibrary/siselseif.cpp
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:35:01 +0100
branchGCC_SURGE
changeset 56 afe7195bb6c3
parent 26 04d4a7bbc3e0
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/


/**
 @file 
 @internalComponent
 @released
*/
#ifdef _MSC_VER
#pragma warning (disable: 4786)
#endif // _MSC_VER

#include <iostream>

#include "sisif.h"
#include "siselseif.h"


void CSISElseIf::AddPackageEntry(std::wostream& aStream, bool aVerbose, bool aCompatible) const
	{
	aStream << L"ELSEIF ";
	iExpression.AddPackageEntry(aStream, aVerbose, aCompatible);
	aStream << std::endl;
	iInstallBlock.AddPackageEntry(aStream, aVerbose, aCompatible);
	}