📄 eventsobserver.h
字号:
/*
* ============================================================================
* Name : MEvenstObserver from EventsObserver.h
* Part of : LogExample
* Created : 26.05.2005 by Forum Nokia
* Description:
* Declares main application class.
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __EVENTSOBSERVER_H__
#define __EVENTSOBSERVER_H__
// INCLUDE FILES
#include <logwrap.h>
// CLASS DECLARATION
class MEventsObserver
{
public:
/**
* Virtual functions, must be implemented elsewhere
*/
virtual void NotifyEventReadL(const CLogEvent& aEvent) = 0;
virtual void NotifyEventAddedL(const CLogEvent& aEvent) = 0;
virtual void NotifyEventDeletedL() = 0;
};
#endif
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -