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