--- a/appinstall_plat/appmngr2runtimeapi/inc/appmngr2infobase.h Thu Jan 07 12:52:45 2010 +0200
+++ b/appinstall_plat/appmngr2runtimeapi/inc/appmngr2infobase.h Mon Jan 18 20:28:24 2010 +0200
@@ -358,13 +358,10 @@
* or installation files list, or it may be displayed in separate
* list of highlighted items.
*
- * For example, untrusted installed applications can be highlighted.
- *
- *
- * The
- * item should indicate the reason why it is not displayed normally
- * when iShowOnTop is set to ETrue (e.g. use special icon).
- * See also the IsShowOnTop() function defined above.
+ * For example, new or untrusted installed applications can be highlighted.
+ * When set, the item needs to show the reason why iShowOnTop is enabled
+ * (e.g. by using "new" or "untrusted" icon). See also the IsShowOnTop()
+ * function defined above.
*/
TBool iShowOnTop;
--- a/appinstaller/AppinstUi/Server/Src/SWInstAppUi.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/appinstaller/AppinstUi/Server/Src/SWInstAppUi.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -49,7 +49,7 @@
void CSWInstAppUi::ConstructL()
{
BaseConstructL( EStandardApp | ENoScreenFurniture | ENonStandardResourceFile
- | EAknEnableSkin | EAknEnableMSK );
+ | EAknEnableSkin | EAknEnableMSK | EAknSingleClickCompatible );
// Create private path for the process
iEikonEnv->FsSession().CreatePrivatePath( EDriveC );
--- a/iaupdate/IAD/engine/controller/src/iaupdatebasenodeimpl.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/engine/controller/src/iaupdatebasenodeimpl.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -439,7 +439,7 @@
&& aNode.MetaId() == MetaId()
|| ( aNode.Uid() == Uid()
&& aNode.Version() == Version()
- && aNode.iMime->Match( IAUpdateProtocolConsts::KMimeServicePackPattern()) == KErrNotFound ) ) //MTA: Changed!!!!!
+ && aNode.iMime->Match( IAUpdateProtocolConsts::KMimeServicePackPattern()) == KErrNotFound ) )
{
return ETrue;
}
--- a/iaupdate/IAD/engine/controller/src/iaupdatenodecontainer.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/engine/controller/src/iaupdatenodecontainer.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -666,7 +666,7 @@
for ( TInt i = 0; i < iHeadNodes.Count(); ++i )
{
CIAUpdateNode& tmpNode( *iHeadNodes[ i ] );
- if( aNode.Uid() == tmpNode.Uid() && aNode.Type() != MIAUpdateNode::EPackageTypeServicePack ) //MTA: Changed!!!
+ if( aNode.Uid() == tmpNode.Uid() && aNode.Type() != MIAUpdateNode::EPackageTypeServicePack )
{
IAUPDATE_TRACE("[IAUPDATE] Head node already in the list.");
--- a/iaupdate/IAD/ui/src/iaupdateappui.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/ui/src/iaupdateappui.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -325,10 +325,7 @@
case EIAUpdateCmdStartUpdate:
{
IAUPDATE_TRACE("[IAUPDATE] CIAUpdateAppUi::HandleCommandL() EIAUpdateCmdStartUpdate");
-
- // No need to be totally silent since the updating is started
- // by user.
- SetDefaultConnectionMethodL( EFalse );
+
// by pushing object to cleanup stack it's destructor is called if leave happens
// so global lock issued by this instance can be released in destructor of CIAUpdateGlobalLockHandler
@@ -336,6 +333,9 @@
if ( !globalLockHandler->InUseByAnotherInstanceL() )
{
globalLockHandler->SetToInUseForAnotherInstancesL( ETrue );
+ // No need to be totally silent since the updating is started
+ // by user.
+ SetDefaultConnectionMethodL( EFalse );
iController->StartUpdateL();
CleanupStack::Pop( globalLockHandler );
delete iGlobalLockHandler;
@@ -578,54 +578,38 @@
void CIAUpdateAppUi::StartupCompleteL()
{
IAUPDATE_TRACE("[IAUPDATE] CIAUpdateAppUi::StartupCompleteL() begin");
- TBool totalSilent( EFalse );
- if ( iRequestType == IAUpdateUiDefines::ECheckUpdates )
- {
- if ( iController->Filter() )
- {
- if ( iController->Filter()->FilterParams() )
- {
- if ( iController->Filter()->FilterParams()->Refresh() )
- {
- //from bgchecker, make it silent
- totalSilent = ETrue;
- }
- }
- }
- }
- TRAPD( err, SetDefaultConnectionMethodL( totalSilent ) );
-
- if ( err != KErrNone )
- {
- IAUPDATE_TRACE("[IAUPDATE] CIAUpdateAppUi::StartupCompleteL() IAP selection failed!!");
- //can't find usable IAP on the phone, complete the request
- //If background checker is the client, it will try again after 1 month
- if ( totalSilent )
- {
- //from bgchecker, report the error to so background checker will start retry mode
- RefreshCompleteL( EFalse, err );
- }
- else
- {
- //report it to the API caller or to main view
- RefreshCompleteL( ETrue, err );
- }
- return;
- }
-
delete iGlobalLockHandler;
iGlobalLockHandler = NULL;
iGlobalLockHandler = CIAUpdateGlobalLockHandler::NewL();
if ( !iGlobalLockHandler->InUseByAnotherInstanceL() )
{
+ TBool totalSilent( EFalse );
+ if ( iRequestType == IAUpdateUiDefines::ECheckUpdates )
+ {
+ if ( iController->Filter() )
+ {
+ if ( iController->Filter()->FilterParams() )
+ {
+ if ( iController->Filter()->FilterParams()->Refresh() )
+ {
+ //from bgchecker, make it silent
+ totalSilent = ETrue;
+ }
+ }
+ }
+ }
+ SetDefaultConnectionMethodL( totalSilent );
iGlobalLockHandler->SetToInUseForAnotherInstancesL( ETrue );
- iController->StartRefreshL();
+ iController->StartRefreshL();
}
else
{
RefreshCompleteL( ETrue, KErrServerBusy );
}
+
+
+
IAUPDATE_TRACE("[IAUPDATE] CIAUpdateAppUi::StartupCompleteL() end");
}
@@ -694,16 +678,6 @@
}
else
{
- /*if ( ( iController->TestRole() ) &&
- ( !iStartedFromApplication ) &&
- ( aWithViewActivation ) )
- {
- for( TInt i = 0; i < iController->Nodes().Count(); ++i )
- {
- MIAUpdateNode* node = iController->Nodes()[i];
- node->Base().SetSelected( EFalse );
- }
- }*/
RefreshL( aError );
if ( aWithViewActivation)
{
--- a/iaupdate/IAD/ui/src/iaupdatehistorycontainer.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/ui/src/iaupdatehistorycontainer.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -234,71 +234,30 @@
// error situations.
iconIndex = 1;
}
-
HBufC* nodeStateDescription = NodeStateDescriptionLC( *item );
TPtr ptr = nodeStateDescription->Des();
AknTextUtils::DisplayTextLanguageSpecificNumberConversion( ptr );
-
-
- HBufC* nameAndVersion = NULL;
-
- _LIT( KZeroVersion, "0.00(0)");
-
- //If version number is all zeros, then only show name of the package
- //This checking is meant for service pack which doesn't have any version number
-
- if ( item->Version().Compare( KZeroVersion ) == 0 )
- {
- nameAndVersion = item->Name().AllocLC();
- }
- else
- {
- CDesCArray* stringArray = new ( ELeave ) CDesCArrayFlat( 1 );
- CleanupStack::PushL( stringArray );
- stringArray->AppendL( item->Name() );
- CArrayFix<TInt>* numberArray = new ( ELeave ) CArrayFixFlat<TInt>( 2 );
- CleanupStack::PushL( numberArray );
- TInt8 majorVersion( 0 );
- TInt8 minorVersion( 0 );
- TInt16 buildVersion( 0 );
- IAUpdateUtils::DesToVersionL( item->Version(),
- majorVersion, minorVersion, buildVersion );
-
- numberArray->AppendL( majorVersion );
- numberArray->AppendL( minorVersion );
-
- nameAndVersion = StringLoader::LoadL( R_IAUPDATE_NAME_WITH_VERSION,
- *stringArray,
- *numberArray );
- CleanupStack::PopAndDestroy( numberArray );
- CleanupStack::PopAndDestroy( stringArray );
-
- CleanupStack::PushL( nameAndVersion );
- }
-
-
- TPtr nameAndVersionPtr = nameAndVersion->Des();
- AknTextUtils::DisplayTextLanguageSpecificNumberConversion( nameAndVersionPtr );
-
+
+ HBufC* name = item->Name().AllocLC();
TBuf<iconIndexLength> iconIndexBuf;
iconIndexBuf.Format( KIconIndexFormat, iconIndex );
HBufC* buffer = HBufC::NewLC( iconIndexBuf.Length() +
KTabulator.iTypeLength +
- nameAndVersion->Length() +
+ name->Length() +
KTabulator.iTypeLength +
nodeStateDescription->Length() );
buffer->Des() = iconIndexBuf;
buffer->Des() += KTabulator();
- buffer->Des() += *nameAndVersion;
+ buffer->Des() += *name;
buffer->Des() += KTabulator();
buffer->Des() += *nodeStateDescription;
iItemTextArray->AppendL( *buffer );
CleanupStack::PopAndDestroy( buffer );
- CleanupStack::PopAndDestroy( nameAndVersion );
+ CleanupStack::PopAndDestroy( name );
CleanupStack::PopAndDestroy( nodeStateDescription );
}
--- a/iaupdate/IAD/ui/src/iaupdateinstallationlistener.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/ui/src/iaupdateinstallationlistener.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -159,9 +159,9 @@
//
// -----------------------------------------------------------------------------
//
-TInt CIAUpdateInstallationListener::RunError( TInt aError )
+TInt CIAUpdateInstallationListener::RunError( TInt /*aError*/ )
{
- IAUPDATE_TRACE_1("[IAUPDATE] CIAUpdateInstallationListener::RunError() error id: %d", aError );
+ IAUPDATE_TRACE("[IAUPDATE] CIAUpdateInstallationListener::RunError()");
return KErrNone;
}
--- a/iaupdate/IAD/ui/src/iaupdatemaincontainer.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/ui/src/iaupdatemaincontainer.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -409,58 +409,22 @@
if ( node->NodeType() == MIAUpdateAnyNode::ENodeTypeNormal )
{
-
- MIAUpdateNode* normalnode = static_cast<MIAUpdateNode*>( node );
-
- HBufC* nameAndVersion = NULL;
-
- if ( normalnode->Type() == MIAUpdateNode::EPackageTypeServicePack )
- {
- nameAndVersion = node->Base().Name().AllocLC();
- }
- else
- {
- CDesCArray* stringArray = new ( ELeave ) CDesCArrayFlat( 1 );
- CleanupStack::PushL( stringArray );
-
- stringArray->AppendL( node->Base().Name() );
-
- CArrayFixFlat<TInt>* numberArray = new ( ELeave ) CArrayFixFlat<TInt>( 2 );
- CleanupStack::PushL( numberArray );
-
- numberArray->AppendL( node->Base().Version().iMajor );
- numberArray->AppendL( node->Base().Version().iMinor );
-
-
- nameAndVersion = StringLoader::LoadL( R_IAUPDATE_NAME_WITH_VERSION,
- *stringArray,
- *numberArray );
-
- CleanupStack::PopAndDestroy( numberArray );
- CleanupStack::PopAndDestroy( stringArray );
-
- CleanupStack::PushL( nameAndVersion );
- }
-
-
- TPtr nameAndVersionPtr = nameAndVersion->Des();
- AknTextUtils::DisplayTextLanguageSpecificNumberConversion( nameAndVersionPtr );
-
+ HBufC* name = node->Base().Name().AllocLC();
HBufC* buffer = HBufC::NewLC( KOne.iTypeLength +
KTabulator.iTypeLength +
- nameAndVersion->Length() +
+ name->Length() +
KTabulator.iTypeLength +
importanceDescription->Length() );
buffer->Des() = KOne();
buffer->Des() += KTabulator();
- buffer->Des() += *nameAndVersion;
+ buffer->Des() += *name;
buffer->Des() += KTabulator();
buffer->Des() += *importanceDescription;
iItemTextArray->AppendL( *buffer );
CleanupStack::PopAndDestroy( buffer );
- CleanupStack::PopAndDestroy( nameAndVersion );
+ CleanupStack::PopAndDestroy( name );
}
@@ -494,9 +458,6 @@
CleanupStack::PopAndDestroy( buffer );
CleanupStack::PopAndDestroy( firmwarename );
}
-
-
-
CleanupStack::PopAndDestroy( importanceDescription );
}
--- a/iaupdate/IAD/ui/src/iaupdaterefreshhandler.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/IAD/ui/src/iaupdaterefreshhandler.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -202,9 +202,9 @@
//
// -----------------------------------------------------------------------------
//
-TInt CIAUpdateRefreshHandler::RunError( TInt aError )
+TInt CIAUpdateRefreshHandler::RunError( TInt /*aError*/ )
{
- IAUPDATE_TRACE_1("[IAUPDATE] CIAUpdateRefreshHandler::RunError() error id: %d", aError );
+ IAUPDATE_TRACE("[IAUPDATE] CIAUpdateRefreshHandler::RunError()");
return KErrNone;
}
Binary file iaupdate/rom/iaupdate_stub.SIS has changed
--- a/iaupdate/rom/iaupdate_stub.pkg Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/rom/iaupdate_stub.pkg Mon Jan 18 20:28:24 2010 +0200
@@ -16,7 +16,7 @@
&EN
;Header
-#{"Application update"}, (0x2000f85a), 2, 0, 8, TYPE=SA
+#{"Software update"}, (0x2000f85a), 2, 0, 8, TYPE=SA
;Localised Vendor Name
%{"Nokia"}
Binary file iaupdate/rom/iaupdater_stub.SIS has changed
--- a/iaupdate/rom/iaupdater_stub.pkg Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdate/rom/iaupdater_stub.pkg Mon Jan 18 20:28:24 2010 +0200
@@ -16,7 +16,7 @@
&EN
;Header
-#{"Application updater"}, (0x2000f85d), 1, 0, 2, TYPE=SA
+#{"Software updater"}, (0x2000f85d), 1, 0, 2, TYPE=SA
;Localised Vendor Name
%{"Nokia"}
Binary file iaupdateapi_stub/sis/iaupdate_stub.SIS has changed
--- a/iaupdateapi_stub/sis/iaupdate_stub.pkg Thu Jan 07 12:52:45 2010 +0200
+++ b/iaupdateapi_stub/sis/iaupdate_stub.pkg Mon Jan 18 20:28:24 2010 +0200
@@ -18,7 +18,7 @@
&EN
;Header
-#{"IAUpdate"}, (0x2000f85a), 1, 0, 0, TYPE=SA
+#{"Software update"}, (0x2000f85a), 1, 0, 0, TYPE=SA
;Localised Vendor Name
%{"Nokia"}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/iaupdateapi_stub/sis/make_iaupdate_stub.bat Mon Jan 18 20:28:24 2010 +0200
@@ -0,0 +1,16 @@
+@rem
+@rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+@rem All rights reserved.
+@rem This component and the accompanying materials are made available
+@rem under the terms of "Eclipse Public License v1.0"
+@rem which accompanies this distribution, and is available
+@rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
+@rem
+@rem Initial Contributors:
+@rem Nokia Corporation - initial contribution.
+@rem
+@rem Contributors:
+@rem
+@rem Description:
+@rem
+makesis -s iaupdate_stub.pkg iaupdate_stub.sis
--- a/ncdengine/provider/deviceinteraction/src/ncdinstallationserviceimpl.cpp Thu Jan 07 12:52:45 2010 +0200
+++ b/ncdengine/provider/deviceinteraction/src/ncdinstallationserviceimpl.cpp Mon Jan 18 20:28:24 2010 +0200
@@ -591,7 +591,6 @@
// 0.0.0
if ( err == KErrNone &&
status == ENcdApplicationInstalled &&
- installedVersion != TCatalogsVersion() &&
aVersion != TCatalogsVersion() )
{
DLINFO(("Installed version: %d.%d.%d, comparing to: %d.%d.%d",
--- a/secureswitools/openssllib/import/inc/openssl/comp.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/comp.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef HEADER_COMP_H
#define HEADER_COMP_H
--- a/secureswitools/openssllib/import/inc/openssl/ebcdic.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/ebcdic.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/* crypto/ebcdic.h */
#ifndef HEADER_EBCDIC_H
--- a/secureswitools/openssllib/import/inc/openssl/opensslconf.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/opensslconf.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
--- a/secureswitools/openssllib/import/inc/openssl/opensslv.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/openssllib/import/inc/openssl/opensslv.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef HEADER_OPENSSLV_H
#define HEADER_OPENSSLV_H
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOM.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOM.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMHEADER_GUARD_HPP
#define DOMHEADER_GUARD_HPP
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMAttr.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMAttr.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMAttr_HEADER_GUARD_
#define DOMAttr_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMBuilder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMBuilder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMBuilder_HEADER_GUARD_
#define DOMBuilder_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCDATASection.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCDATASection.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMCDataSection_HEADER_GUARD_
#define DOMCDataSection_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCharacterData.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMCharacterData.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMCharacterData_HEADER_GUARD_
#define DOMCharacterData_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMComment.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMComment.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMComment_HEADER_GUARD_
#define DOMComment_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMConfiguration.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMConfiguration.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocument.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocument.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMDocument_HEADER_GUARD_
#define DOMDocument_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentFragment.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentFragment.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMDocumentFragment_HEADER_GUARD_
#define DOMDocumentFragment_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentRange.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentRange.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMDocumentRange_HEADER_GUARD_
#define DOMDocumentRange_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentTraversal.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentTraversal.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMDocumentTraversal_HEADER_GUARD_
#define DOMDocumentTraversal_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentType.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMDocumentType.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMDocumentType_HEADER_GUARD_
#define DOMDocumentType_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMElement.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMElement.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMElement_HEADER_GUARD_
#define DOMElement_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntity.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntity.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMEntity_HEADER_GUARD_
#define DOMEntity_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityReference.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityReference.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMEntityReference_HEADER_GUARD_
#define DOMEntityReference_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMEntityResolver.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMEntityResolver_HEADER_GUARD_
#define DOMEntityResolver_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMError.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMError.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMError_HEADER_GUARD_
#define DOMError_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMErrorHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMErrorHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMErrorHandler_HEADER_GUARD_
#define DOMErrorHandler_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMException_HEADER_GUARD_
#define DOMException_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementation.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementation.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMImplementation_HEADER_GUARD_
#define DOMImplementation_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationLS.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationLS.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMImplementationLS_HEADER_GUARD_
#define DOMImplementationLS_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationRegistry.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationRegistry.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMImplementationRegistry_HEADER_GUARD_
#define DOMImplementationRegistry_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMImplementationSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMImplementationSource_HEADER_GUARD_
#define DOMImplementationSource_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMInputSource_HEADER_GUARD_
#define DOMInputSource_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMLocator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMLocator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMLocator_HEADER_GUARD_
#define DOMLocator_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNamedNodeMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNamedNodeMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNamedNodeMap_HEADER_GUARD_
#define DOMNamedNodeMap_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNode_HEADER_GUARD_
#define DOMNode_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeFilter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNodeFilter_HEADER_GUARD_
#define DOMNodeFilter_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeIterator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeIterator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNodeIterator_HEADER_GUARD_
#define DOMNodeIterator_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNodeList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNodeList_HEADER_GUARD_
#define DOMNodeList_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNotation.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMNotation.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMNotation_HEADER_GUARD_
#define DOMNotation_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMPSVITypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMPSVITypeInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMProcessingInstruction.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMProcessingInstruction.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMProcessingInstruction_HEADER_GUARD_
#define DOMProcessingInstruction_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRange.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRange.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMRange_HEADER_GUARD_
#define DOMRange_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRangeException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMRangeException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMRangeException_HEADER_GUARD_
#define DOMRangeException_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMText.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMText.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMText_HEADER_GUARD_
#define DOMText_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTreeWalker.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTreeWalker.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMTreeWalker_HEADER_GUARD_
#define DOMTreeWalker_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMTypeInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMUserDataHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMUserDataHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMUserDataHandler_HEADER_GUARD_
#define DOMUserDataHandler_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMWriter_HEADER_GUARD_
#define DOMWriter_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriterFilter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMWriterFilter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMWriterFilter_HEADER_GUARD_
#define DOMWriterFilter_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathEvaluator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathEvaluator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathEvaluator_HEADER_GUARD_
#define DOMXPathEvaluator_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathException_HEADER_GUARD_
#define DOMXPathException_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathExpression.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathExpression.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathExpression_HEADER_GUARD_
#define DOMXPathExpression_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNSResolver.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNSResolver.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathNSResolver_HEADER_GUARD_
#define DOMXPathNSResolver_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNamespace.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathNamespace.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathNamespace_HEADER_GUARD_
#define DOMXPathNamespace_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathResult.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/DOMXPathResult.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMXPathResult_HEADER_GUARD_
#define DOMXPathResult_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/StDOMNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/StDOMNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOMSPtr_HEADER_GUARD_
#define DOMSPtr_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ChildNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ChildNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef ChildNode_HEADER_GUARD_
#define ChildNode_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DOM_DEPRECATED_HEADER_GUARD_
#define DOM_DEPRECATED_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMString.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOMString.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Attr.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Attr.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CDATASection.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CDATASection.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CharacterData.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_CharacterData.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Comment.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Comment.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMImplementation.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DOMImplementation.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Document.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Document.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentFragment.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentFragment.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentType.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_DocumentType.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Element.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Element.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Entity.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Entity.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_EntityReference.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_EntityReference.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NamedNodeMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NamedNodeMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Node.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Node.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeFilter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeIterator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeIterator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_NodeList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Notation.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Notation.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_ProcessingInstruction.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_ProcessingInstruction.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Range.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Range.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_RangeException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_RangeException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Text.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_Text.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_TreeWalker.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_TreeWalker.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_XMLDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DOM_XMLDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DomMemDebug.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/DomMemDebug.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef DomMemDebug_HEADER_GUARD_
#define DomMemDebug_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/MemDebug.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/MemDebug.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef MemDebug_HEADER_GUARD_
#define MemDebug_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NameNodeFilter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NameNodeFilter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeIDMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeIDMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef NodeIDMap_HEADER_GUARD_
#define NodeIDMap_HEADER_GUARD_
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeVector.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/NodeVector.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef NodeVector_HEADER_GUARD_
#define NodeVector_HEADER_GUARD_
/*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ParentNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/dom/deprecated/ParentNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef ParentNode_HEADER_GUARD_
#define ParentNode_HEADER_GUARD_
/*
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/BinOutputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/BinOutputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileFormatTarget.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/LocalFileInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufFormatTarget.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemBufInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemoryManager.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/MemoryManager.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdInInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdInInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdOutFormatTarget.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/StdOutFormatTarget.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/URLInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/URLInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/ValidationContext.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/ValidationContext.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4DOMInputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4DOMInputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4InputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/Wrapper4InputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDef.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttDefList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttr.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLAttr.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBuffer.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBuffer.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBufferMgr.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLBufferMgr.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLContentModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDTDDescription.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDTDDescription.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDocumentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLDocumentHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLElementDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLEntityHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorCodes.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorCodes.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// This file is generated, don't edit it!!
#if !defined(ERRHEADER_XMLErrs)
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorReporter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLErrorReporter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLFormatter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLFormatter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarDescription.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarDescription.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarPool.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLGrammarPool.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLNotationDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLNotationDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLPScanToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLPScanToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRecognizer.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRecognizer.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLRefInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLSchemaDescription.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLSchemaDescription.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidityCodes.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/XMLValidityCodes.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// This file is generated, don't edit it!!
#if !defined(ERRHEADER_XMLValid)
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttribute.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttribute.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttributeList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIAttributeList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIElement.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIElement.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIItem.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/PSVIItem.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAnnotation.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAnnotation.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeDeclaration.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeUse.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSAttributeUse.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSComplexTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSComplexTypeDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSConstants.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSConstants.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSElementDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSElementDeclaration.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSFacet.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSFacet.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSIDCDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSIDCDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroup.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroup.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroupDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSModelGroupDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSMultiValueFacet.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSMultiValueFacet.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamedMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamespaceItem.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNamespaceItem.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNotationDeclaration.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSNotationDeclaration.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSObject.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSObject.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSParticle.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSParticle.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSTypeDefinition.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSTypeDefinition.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSValue.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSValue.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSWildcard.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/framework/psvi/XSWildcard.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/AbstractDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/AbstractDOMParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/DOMBuilderImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/DOMBuilderImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLFilterImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLFilterImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLReaderImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAX2XMLReaderImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAXParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/SAXParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/XercesDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/parsers/XercesDOMParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/AttributeList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/AttributeList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DTDHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DTDHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DocumentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/DocumentHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/EntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/EntityResolver.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/ErrorHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/ErrorHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/HandlerBase.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/HandlerBase.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/InputSource.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/InputSource.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Locator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Locator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Parser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/Parser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXParseException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax/SAXParseException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/Attributes.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/Attributes.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/ContentHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/ContentHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DeclHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DeclHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DefaultHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/DefaultHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/LexicalHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/LexicalHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLFilter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLFilter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLReader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/SAX2XMLReader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/XMLReaderFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/sax2/XMLReaderFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/AutoSense.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/AutoSense.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Base64.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Base64.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BaseRefVectorOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinFileInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinFileInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BinInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitOps.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitOps.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitSet.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/BitSet.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/BorlandCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/BorlandCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CSetDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CSetDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CodeWarriorDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/CodeWarriorDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/DECCXXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/DECCXXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/GCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/GCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/HPCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/HPCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAOS2Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAOS2Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAW32Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/IBMVAW32Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MIPSproDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MIPSproDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MVSCPPDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/MVSCPPDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/OS400SetDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/OS400SetDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/PTXCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/PTXCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/QCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/QCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SCOCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SCOCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunKaiDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/SunKaiDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/TandemCCDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/TandemCCDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/VCPPDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Compilers/VCPPDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/CountedPointer.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/DefaultPanicHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/DefaultPanicHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EmptyStackException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EmptyStackException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EncodingValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/EncodingValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/FlagJanitor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashBase.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashBase.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashCMStateSet.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashCMStateSet.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashPtr.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashPtr.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashXMLCh.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HashXMLCh.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HexBin.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/HexBin.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IOException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IOException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IllegalArgumentException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/IllegalArgumentException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/InvalidCastException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/InvalidCastException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Janitor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KVStringPair.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KVStringPair.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyRefPair.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/KeyValuePair.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/LogicalPath.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/LogicalPath.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if !defined(WEAVEPATH_CPP)
#define WEAVEPATH_CPP
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// ----------------------------------------------------------------
// This file was generated from the XML error message source.
// so do not edit this file directly!!
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/XMLMsgCat_Ids.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgCatalog/XMLMsgCat_Ids.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// ----------------------------------------------------------------
// This file was generated from the XML error message source.
// so do not edit this file directly!!
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/MsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/MsgLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/XMLMessages.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/MsgFile/XMLMessages.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#ifndef XML_ERROR_MESSAGES_H
#define XML_ERROR_MESSAGES_H
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/Win32/Win32MsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/MsgLoaders/Win32/Win32MsgLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Mutexes.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Mutexes.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NameIdPool.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/MacOSURLAccess.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/MacOSURLAccess.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/URLAccessBinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccess/URLAccessBinInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/MacOSURLAccessCF.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/MacOSURLAccessCF.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/URLAccessCFBinInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/MacOSURLAccessCF/URLAccessCFBinInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/UnixHTTPURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/Socket/UnixHTTPURLInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/BinHTTPURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/BinHTTPURLInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/WinSockNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/WinSock/WinSockNetAccessor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/BinURLInputStream.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/BinURLInputStream.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/LibWWWNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NetAccessors/libWWW/LibWWWNetAccessor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NoSuchElementException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NoSuchElementException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NullPointerException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NullPointerException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NumberFormatException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/NumberFormatException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/OutOfMemoryException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/OutOfMemoryException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PanicHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PanicHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ParseException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ParseException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/PlatformUtils.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/AIX/AIXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/AIX/AIXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/BeOS/BeOSDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/BeOS/BeOSDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Cygwin/CygwinDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Cygwin/CygwinDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/FreeBSD/FreeBSDDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/FreeBSD/FreeBSDDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/HPUX/HPUXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/HPUX/HPUXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/IRIX/IRIXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/IRIX/IRIXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Interix/InterixDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Interix/InterixDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Linux/LinuxDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Linux/LinuxDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacAbstractFile.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacAbstractFile.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacCarbonFile.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacCarbonFile.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacPosixFile.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/MacOS/MacPosixFile.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/NetBSD/NetBSDDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/NetBSD/NetBSDDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS2/OS2Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS2/OS2Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/FileHandleImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/FileHandleImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/OS390Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/OS390Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/Path390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS390/Path390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400PlatformUtils.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OS400/OS400PlatformUtils.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OpenServer/OpenServerDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/OpenServer/OpenServerDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/PTX/PTXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/PTX/PTXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/QNX/QNXDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/QNX/QNXDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Solaris/SolarisDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Solaris/SolarisDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tandem/TandemDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tandem/TandemDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tru64/Tru64Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Tru64/Tru64Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/UnixWare/UnixWareDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/UnixWare/UnixWareDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/Win32Defs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/Win32Defs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/resource.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Platforms/Win32/resource.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by Version.rc
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/QName.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/QName.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash2KeysTableOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHash3KeysIdPool.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefHashTableOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefStackOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefVectorOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RuntimeException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RuntimeException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SchemaDateTimeException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SchemaDateTimeException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SecurityManager.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SecurityManager.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/StringPool.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/StringPool.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SynchronizedStringPool.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/SynchronizedStringPool.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransENameMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Cygwin/CygwinTransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Cygwin/CygwinTransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/ICU/ICUTransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/ICU/ICUTransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv/IconvTransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv/IconvTransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv390/Iconv390TransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv390/Iconv390TransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/Iconv400TransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/Iconv400TransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_cnv.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_cnv.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_util.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/iconv_util.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
#if (__OS400_TGTVRM__>=510) /* @01a */
#pragma datamodel(P128) /* @01a */
#endif /* @01a */
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/pos400.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/pos400.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/utypes.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Iconv400/utypes.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/MacOSUnicodeConverter/MacOSUnicodeConverter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/MacOSUnicodeConverter/MacOSUnicodeConverter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/Uniconv390TransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/Uniconv390TransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML256TableTranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML256TableTranscoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML88591Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XML88591Transcoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLASCIITranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLASCIITranscoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLEBCDICTranscoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLEBCDICTranscoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1140Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLIBM1140Transcoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLUTF8Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLUTF8Transcoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLWin1252Transcoder390.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/XMLWin1252Transcoder390.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/ccsid.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/ccsid.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/uniconv.h Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Uniconv390/uniconv.h Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Win32/Win32TransService.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/Transcoders/Win32/Win32TransService.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TranscodingException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/TranscodingException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UTFDataFormatException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UTFDataFormatException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnexpectedEOFException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnexpectedEOFException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnsupportedEncodingException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/UnsupportedEncodingException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueArrayOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueHashTableOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueStackOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/ValueVectorOf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML256TableTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML256TableTranscoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML88591Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XML88591Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLASCIITranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLASCIITranscoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLAbstractDoubleFloat.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLAbstractDoubleFloat.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigDecimal.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigDecimal.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigInteger.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLBigInteger.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChTranscoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChar.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLChar.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDOMMsg.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDOMMsg.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// This file is generated, don't edit it!!
#if !defined(ERRHEADER_XMLDOMMsg)
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDateTime.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDateTime.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDeleterFor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDouble.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLDouble.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEBCDICTranscoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEBCDICTranscoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEntityResolver.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEntityResolver.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEnumerator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLEnumerator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLExceptMsgs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLExceptMsgs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
// This file is generated, don't edit it!!
#if !defined(ERRHEADER_XMLExcepts)
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLFloat.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLFloat.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.c Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.c Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLHolder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1047Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1047Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1140Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLIBM1140Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInitializer.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInitializer.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInteger.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLInteger.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLMsgLoader.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLMsgLoader.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNetAccessor.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNetAccessor.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNumber.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLNumber.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLRegisterCleanup.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLRegisterCleanup.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLResourceIdentifier.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLResourceIdentifier.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLString.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLString.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLStringTokenizer.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLStringTokenizer.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUCS4Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUCS4Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLURL.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLURL.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF16Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF16Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF8Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUTF8Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUni.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUni.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUniDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUniDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUri.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLUri.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLWin1252Transcoder.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMLWin1252Transcoder.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMemory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XMemory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesVersion.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/XercesVersion.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ASCIIRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ASCIIRangeFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BMPattern.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BMPattern.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BlockRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/BlockRangeFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/CharToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/CharToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ClosureToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ClosureToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConcatToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConcatToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConditionToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ConditionToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Match.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Match.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ModifierToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ModifierToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Op.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Op.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/OpFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/OpFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParenToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParenToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParserForXMLSchema.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/ParserForXMLSchema.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeTokenMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RangeTokenMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegularExpression.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegularExpression.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxUtil.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/RegxUtil.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/StringToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/StringToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Token.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/Token.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenInc.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/TokenInc.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UniCharTable.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UniCharTable.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnicodeRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnicodeRangeFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnionToken.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/UnionToken.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLRangeFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLRangeFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLUniCharacter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/regx/XMLUniCharacter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDef.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDAttDefList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDElementDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDEntityDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDEntityDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDGrammar.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDGrammar.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDScanner.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDScanner.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DTDValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DocTypeHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/DocTypeHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/AllContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/AllContentModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMAny.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMAny.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMBinaryOp.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMBinaryOp.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMLeaf.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMLeaf.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMStateSet.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMStateSet.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMUnaryOp.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/CMUnaryOp.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentLeafNameTypeVector.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentLeafNameTypeVector.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentSpecNode.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/ContentSpecNode.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/DFAContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/DFAContentModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/Grammar.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/Grammar.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/GrammarResolver.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/GrammarResolver.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/MixedContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/MixedContentModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/SimpleContentModel.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/common/SimpleContentModel.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericFacetValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericFacetValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractNumericValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractStringValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AbstractStringValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnySimpleTypeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnySimpleTypeDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/Base64BinaryDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/Base64BinaryDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/BooleanDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/BooleanDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidatorFactory.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DatatypeValidatorFactory.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DateTimeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DayDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DayDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DecimalDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DecimalDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DoubleDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DoubleDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DurationDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/DurationDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ENTITYDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ENTITYDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/FloatDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/FloatDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/HexBinaryDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/HexBinaryDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDREFDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/IDREFDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeFacetException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeFacetException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeValueException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/InvalidDatatypeValueException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ListDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/ListDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDayDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/MonthDayDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NCNameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NCNameDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NOTATIONDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NOTATIONDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/NameDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/QNameDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/QNameDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/StringDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/StringDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/TimeDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/TimeDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/UnionDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/UnionDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/XMLCanRepGroup.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/XMLCanRepGroup.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/ComplexTypeInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/ComplexTypeInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/GeneralAttributeCheck.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/GeneralAttributeCheck.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/NamespaceScope.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/NamespaceScope.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/PSVIDefs.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/PSVIDefs.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDef.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDef.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDefList.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaAttDefList.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaElementDecl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaElementDecl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaGrammar.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaGrammar.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaSymbols.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaSymbols.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaValidator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SchemaValidator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SubstitutionGroupComparator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/SubstitutionGroupComparator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/TraverseSchema.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/TraverseSchema.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDDOMParser.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDDOMParser.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDErrorReporter.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDErrorReporter.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDLocator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XSDLocator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XUtil.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XUtil.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesAttGroupInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesAttGroupInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesElementWildcard.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesElementWildcard.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesGroupInfo.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/XercesGroupInfo.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldActivator.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldActivator.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldValueMap.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/FieldValueMap.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Field.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Field.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Key.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Key.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_KeyRef.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_KeyRef.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Selector.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Selector.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Unique.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IC_Unique.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraint.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraint.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStore.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStore.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStoreCache.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/ValueStoreCache.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathException.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathException.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcher.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcher.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcherStack.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathMatcherStack.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathSymbols.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XPathSymbols.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
--- a/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XercesXPath.hpp Thu Jan 07 12:52:45 2010 +0200
+++ b/secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/validators/schema/identity/XercesXPath.hpp Mon Jan 18 20:28:24 2010 +0200
@@ -1,19 +1,3 @@
-/*
-* Copyright (c) 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:
-*
-*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with