⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csvfileloaderobserver.h

📁 最新官方例子,图形,描述副,基本控件,通讯协议,等等,
💻 H
字号:
#ifndef CSVFILELOADEROBSERVER_H
#define CSVFILELOADEROBSERVER_H

// INCLUDES

// System includes
#include <e32def.h>

// FORWARD DECLARATIONS
class CCsvFileLoader;

// CLASS DECLARATION

/**
*
* @class	MCsvFileLoaderObserver csvfileloaderobserver.h
* @brief	Mixin to provide progress and completion feedback when loading a list of elements
*			from a comma separated value (csv) file.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

class MCsvFileLoaderObserver
	{
public:
	/**
	* Notify the observer that an element has just be successfully loaded
	* @param aNewElementIndex the index of the newly loaded element
	*/
	virtual void NotifyElementLoaded(TInt aNewElementIndex) = 0;
	/**
	* Notify the observer that a csv file load has completed--successfully or otherwise
	* @param aCompletionStatus the system wide error code on completion--KErrNone if successful
	* @param aLoader reference to the loader that has completed for identification purposes.
	*/
	virtual void NotifyLoadCompleted(TInt aCompletionStatus, const CCsvFileLoader& aLoader) = 0;
	};

#endif // #ifndef CSVFILELOADEROBSERVER_H

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -