os/ossrv/lowlevellibsandfws/pluginfw/Framework/FrameTests/MagicStateAccessors.cpp
Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "MagicStateAccessors.h"
17 #include "Interface.h"
19 TInt TExampleInterface_StateAccessor::InvariantTest(TAny* aTestObject)
21 CExampleInterface* interfaceInstance = REINTERPRET_CAST(CExampleInterface*,aTestObject);
24 // Validate the internal state variables.
29 TInt TExampleInterface_StateAccessor::Internalize(TAny* aTestObject)
31 CExampleInterface* interfaceInstance = REINTERPRET_CAST(CExampleInterface*,aTestObject);
34 // Set the internal state variables.
39 TInt TExampleInterface_StateAccessor::Externalize(TAny* aTestObject)
41 CExampleInterface* interfaceInstance = REINTERPRET_CAST(CExampleInterface*,aTestObject);
44 // Get the internal state variables.
49 TUid TExampleInterface_StateAccessor::GetDtorKey(CExampleInterface* aTestObject)
52 return aTestObject->iDtor_ID_Key;