sl@0: /* sl@0: * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef CONERESLOADER_H sl@0: #define CONERESLOADER_H sl@0: sl@0: #include sl@0: sl@0: class CCoeEnv; sl@0: sl@0: NONSHARABLE_CLASS(RConeResourceLoader) sl@0: /** sl@0: @deprecated sl@0: @see RCoeResourceLoader sl@0: @note For compatibility with S60 only sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C RConeResourceLoader(CCoeEnv& aCoeEnv); sl@0: IMPORT_C TInt Open(TFileName& aFileName); sl@0: IMPORT_C void OpenL(TFileName& aFileName); sl@0: IMPORT_C void Close(); sl@0: private: sl@0: // Dummy members to make this the same size as a RCoeResourceLoader so sl@0: // in-place construction of the RCoeResourceLoader will work sl@0: void* iDummy1; // was CCoeEnv& sl@0: TInt iDummy2; // was TInt sl@0: }; sl@0: sl@0: #endif // CONERESLOADER_H sl@0: