?? xinputbytebuffer.cpp
字號:
//---------------------------------------------------------------------------
#pragma hdrstop
#include "XInputByteBuffer.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
namespace zdhsoft
{
XInputByteBuffer::XInputByteBuffer(const XByteBuffer & aBuffer)
:m_Buffer( &aBuffer ),
m_Pos(0)
{}
XInputByteBuffer::XInputByteBuffer(const XInputByteBuffer & aInputByteBuffer)
:m_Buffer( aInputByteBuffer.m_Buffer ),
m_Pos( aInputByteBuffer.m_Pos )
{}
XEReadBufferFail::XEReadBufferFail(int iHelpContext)
:Exception("")
{
HelpContext = iHelpContext;
}
}
?? 快捷鍵說明
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -