williamr@4: /* williamr@4: * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies). williamr@4: * All rights reserved. williamr@4: * This component and the accompanying materials are made available williamr@4: * under the terms of "Eclipse Public License v1.0" williamr@4: * which accompanies this distribution, and is available williamr@4: * at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: * williamr@4: * Initial Contributors: williamr@4: * Nokia Corporation - initial contribution. williamr@4: * williamr@4: * Contributors: williamr@4: * williamr@4: * Description: Virtual Phonebook bookmark for referencing to any type of williamr@4: * item in the view. Can be used to find an item from the williamr@4: * view that was previously saved as a bookmark. williamr@4: * williamr@4: */ williamr@4: williamr@4: williamr@4: williamr@4: #ifndef MVPBKCONTACTBOOKMARK_H williamr@4: #define MVPBKCONTACTBOOKMARK_H williamr@4: williamr@4: // INCLUDES williamr@4: #include williamr@4: #include williamr@4: williamr@4: // CLASS DECLARATIONS williamr@4: williamr@4: /** williamr@4: * Virtual Phonebook Contact bookmark. williamr@4: * This bookmark interface can be used to reference any type williamr@4: * of item in a Virtual Phonebook view. williamr@4: */ williamr@4: class MVPbkContactBookmark williamr@4: { williamr@4: public: // destructor williamr@4: /** williamr@4: * Destructor. williamr@4: */ williamr@4: virtual ~MVPbkContactBookmark() { } williamr@4: williamr@4: /** williamr@4: * Returns an extension point for this interface or NULL. williamr@4: * @param aExtensionUid Uid of extension williamr@4: * @return Extension point or NULL williamr@4: */ williamr@4: virtual TAny* ContactBookmarkExtension( williamr@4: TUid /*aExtensionUid*/) { return NULL; } williamr@4: }; williamr@4: williamr@4: #endif // MVPBKCONTACTBOOKMARK_H williamr@4: williamr@4: // End of file