📄 maddressbookengineobserver.h
字号:
/*
* ==============================================================================
* Name : MAddressBookEngineObserver.h
* Part of : AddressBook
* Interface :
* Description : Interface of AddressBook
* Version :
*
* Copyright (c) 2002-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef MADDRESSBOOKENGINEOBSERVER_H
#define MADDRESSBOOKENGINEOBSERVER_H
// DATA TYPES
enum TAddressbookErrorCode
{
EConnectionNotReady = 1,
ETooManyMatches,
ESearchFailed
};
// FORWARD DECLARATIONS
class CAddressBookContact;
// CLASS DECLARATION
class MAddressBookEngineObserver
{
public:
/**
* checks errors that can happen
* @param aCode Code of Error
*/
virtual void ErrorL(TInt aCode) = 0;
/**
* sets conection's status as ready
*/
virtual void ConnectionReady() = 0;
/**
* finishes searching of information
* @param aContactArray - contact information that was found
*/
virtual void SearchFinishedL(RPointerArray<CAddressBookContact>& aContactArray) = 0;
};
#endif // MADDRESSBOOKENGINEOBSERVER_H
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -