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

📄 idcoderxxe.pas

📁 Indy控件的使用源代码
💻 PAS
字号:
{ $HDR$}
{**********************************************************************}
{ Unit archived using Team Coherence                                   }
{ Team Coherence is Copyright 2002 by Quality Software Components      }
{                                                                      }
{ For further information / comments, visit our WEB site at            }
{ http://www.TeamCoherence.com                                         }
{**********************************************************************}
{}
{ $Log:  10101: IdCoderXXE.pas 
{
{   Rev 1.0    2002.11.12 10:33:20 PM  czhower
}
unit IdCoderXXE;



interface



uses

  Classes,

  IdCoder3to4, IdCoderUUE;

                

type

  TIdDecoderXXE = class(TIdDecoderUUEBase)

  public

    constructor Create(AOwner: TComponent); override;

  end;



  TIdEncoderXXE = class(TIdEncoderUUEBase)

  public

    constructor Create(AOwner: TComponent); override;

  end;



const

  GXXECodeTable: string = '+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; {Do not Localize}



var

  GXXEDecodeTable: TIdDecodeTable;



implementation



uses

  IdGlobal,

  SysUtils;



{ TIdEncoderXXE }



constructor TIdEncoderXXE.Create(AOwner: TComponent);

begin

  inherited;

  FCodingTable := GXXECodeTable;

  FFillChar := FCodingTable[1];

end;



{ TIdDecoderXXE }



constructor TIdDecoderXXE.Create(AOwner: TComponent);

begin

  inherited;

  FDecodeTable := GXXEDecodeTable;

  FFillChar := '~';  {Do not Localize}

end;



initialization

  TIdDecoder4to3.ConstructDecodeTable(GXXECodeTable, GXXEDecodeTable);

end.

⌨️ 快捷键说明

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