📄 syncserialengine.h
字号:
/*
* ============================================================================
* Name : CSyncSerialEngine from SyncSerialEngine.h
* Part of : SyncSerial
* Created : 23.02.2006 by ToBeReplacedByAuthor
* Description:
* Declares engine for application.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
#ifndef SYNCSERIALENGINE_H
#define SYNCSERIALENGINE_H
// INCLUDES
#include <e32base.h>
#include <c32comm.h>
// FORWARD DECLARATIONS
// CLASS DECLARATION
/**
* CSyncSerialEngine class.
*
*/
class CSyncSerialEngine : public CBase
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CSyncSerialEngine* NewL();
/**
* Destructor.
*/
~CSyncSerialEngine();
public: // New functions
TInt Send(const TDesC8& aData);
private: // Constructors
/**
* Constructor
*/
CSyncSerialEngine();
/**
* EPOC default constructor.
*/
void ConstructL();
private: // New functions
void InitializeL();
void OpenL();
void ConfigurateL();
void Close();
private: //data
RCommServ iCommServ;
RComm iComm;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -