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.
14 // Started by Brendan, Dec 1996
15 // Test library unloader
21 IMPORT_C CLibTest* LibEntry(); // Force export
23 NONSHARABLE_CLASS(CMyLibTest) : public CLibTest
32 CMyLibTest::CMyLibTest()
34 __DECLARE_NAME(_S("CMyLibTest"));
37 TInt CMyLibTest::Test1() const
42 TInt CMyLibTest::Test2() const
47 TInt CMyLibTest::Test3()
52 EXPORT_C CLibTest* LibEntry()
54 // Lib main entry point
57 return(new(ELeave) CMyLibTest);