Update contrib.
1 // Copyright (c) 2008-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 the License "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 "t_new_classes.h"
18 XCtorAndDtor::XCtorAndDtor()
20 iState = EConstructed;
22 XCtorAndDtor::~XCtorAndDtor()
24 iState = EDeconstructed;
28 XCtorOnly::XCtorOnly()
30 iState = EConstructed;
34 XDtorOnly::~XDtorOnly()
36 iState = EDeconstructed;
40 XVeryLargeClassCtorAndDtor::XVeryLargeClassCtorAndDtor()
42 iBust[0] = EConstructed;
44 XVeryLargeClassCtorAndDtor::~XVeryLargeClassCtorAndDtor()
46 iBust[0] = EDeconstructed;
50 XVeryLargeClassCtorOnly::XVeryLargeClassCtorOnly()
52 iBust[0] = EConstructed;
56 XVeryLargeClassDtorOnly::~XVeryLargeClassDtorOnly()
58 iBust[0] = EDeconstructed;