亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dctype.pas

?? SrcDecompiler is about creating a Delphi program decompiler. The program is written for Delphi 4 or
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
unit dcType;

interface

uses
  TypInfo, Classes, Procs, dcTypeIntf;

type
  TdcType = class;

  { TdcTypeImplement }

  TdcTypeImplement = class(TInterfacedObject, IdcType, IdcArrayType, IdcClassType,
                                    IdcDynArrayType, IdcEnumerationType,
                                    IdcFloatType, IdcInt64Type, IdcInterfaceType,
                                    IdcNonSetOrdType, IdcOrdType, IdcRecordType,
                                    IdcStringType, IdcSetOrdType)
  private
    FdcType: TdcType;
    function GetType: IdcType;
    function GetArrayType: IdcArrayType;
    function GetClassType: IdcClassType;
    function GetDynArrayType: IdcDynArrayType;
    function GetEnumerationType: IdcEnumerationType;
    function GetFloatType: IdcFloatType;
    function GetInt64Type: IdcInt64Type;
    function GetInterfaceType: IdcInterfaceType;
    function GetNonSetOrdType: IdcNonSetOrdType;
    function GetOrdType: IdcOrdType;
    function GetRecordType: IdcRecordType;
    function GetSetOrdType: IdcSetOrdType;
    function GetStringType: IdcStringType;
  public
    constructor CreateX(dcType: TdcType); virtual;
    property dcType: IdcType read GetType implements IdcType;
    property dcArrayType: IdcArrayType read GetArrayType implements IdcArrayType;
    property dcClassType: IdcClassType read GetClassType implements IdcClassType;
    property dcDynArrayType: IdcDynArrayType read GetDynArrayType implements IdcDynArrayType;
    property dcEnumerationType: IdcEnumerationType read GetEnumerationType implements IdcEnumerationType;
    property dcFloatType: IdcFloatType read GetFloatType implements IdcFloatType;
    property dcInt64Type: IdcInt64Type read GetInt64Type implements IdcInt64Type;
    property dcInterfaceType: IdcInterfaceType read GetInterfaceType implements IdcInterfaceType;
    property dcNonSetOrdType: IdcNonSetOrdType read GetNonSetOrdType implements IdcNonSetOrdType;
    property dcOrdType: IdcOrdType read GetOrdType implements IdcOrdType;
    property dcRecordType: IdcRecordType read GetRecordType implements IdcRecordType;
    property dcSetOrdType: IdcSetOrdType read GetSetOrdType implements IdcSetOrdType;
    property dcStringType: IdcStringType read GetStringType implements IdcStringType;
  end;

  TdcTypeImplementClass = class of TdcTypeImplement;
  
  { TdcArrayType }
  TdcArrayType = class(TdcTypeImplement, IdcArrayType)
  private
    FCount: Integer;
    FElementType: IdcType;
  public
    function GetCount: Integer;
    procedure SetCount(Value: Integer);
    function GetElementType: IdcType;
    procedure SetElementType(Value: IdcType);
    property Count: Integer read GetCount write SetCount;
    property ElementType: IdcType read GetElementType write SetElementType;
  end;

  { TdcClassType }
  TdcClassType = class(TdcTypeImplement, IdcClassType)
  private
    FAClass: TClassInfo;
  public
    function GetAClass: TClassInfo;
    procedure SetAClass(Value: TClassInfo);
    property AClass: TClassInfo read GetAClass write SetAClass;
  end;

  { TdcDynArrayType }
  TdcDynArrayType = class(TdcTypeImplement, IdcDynArrayType)
  private
    FElementType: IdcType;
  public
    function GetElementType: IdcType;
    procedure SetElementType(Value: IdcType);
    property ElementType: IdcType read GetElementType write SetElementType;
  end;

  { TdcEnumerationType }
  TdcEnumerationType = class(TdcTypeImplement, IdcEnumerationType)
  private
    FBaseType: IdcType;
    FNameList: TStrings;
  public
    constructor CreateX(dcType: TdcType); override;
    destructor Destroy; override;
    function GetBaseType: IdcType;
    procedure SetBaseType(Value: IdcType);
    function GetNameList: TStrings;
    procedure SetNameList(Value: TStrings);
    property BaseType: IdcType read GetBaseType write SetBaseType;
    property NameList: TStrings read GetNameList write SetNameList;
  end;

  { TdcFloatType }
  TdcFloatType = class(TdcTypeImplement, IdcFloatType)
  private
    FFloatType: TFloatType;
  public
    function GetFloatType: TFloatType;
    procedure SetFloatType(Value: TFloatType);
    property FloatType: TFloatType read GetFloatType write SetFloatType;
  end;

  { TdcInt64Type }
  TdcInt64Type = class(TdcTypeImplement, IdcInt64Type)
  private
    FMinValue: Int64;
    FMaxValue: Int64;
  public
    function GetMinValue: Int64;
    procedure SetMinValue(Value: Int64);
    function GetMaxValue: Int64;
    procedure SetMaxValue(Value: Int64);
    property MinValue: Int64 read GetMinValue write SetMinValue;
    property MaxValue: Int64 read GetMaxValue write SetMaxValue;
  end;

  { TdcInterfaceType }
  TdcInterfaceType = class(TdcTypeImplement, IdcInterfaceType)
  private
    FAInterface: TInterface;
  public
    function GetInterface: TInterface;
    procedure SetInterface(Value: TInterface);
    property AInterface: TInterface read GetInterface write SetInterface;
  end;

  { TdcNonSetOrdType }
  TdcNonSetOrdType = class(TdcTypeImplement, IdcNonSetOrdType)
  private
    FMinValue: Integer;
    FMaxValue: Integer;
  public
    function GetMinValue: Integer;
    procedure SetMinValue(Value: Integer);
    function GetMaxValue: Integer;
    procedure SetMaxValue(Value: Integer);
    property MinValue: Integer read GetMinValue write SetMinValue;
    property MaxValue: Integer read GetMaxValue write SetMaxValue;
  end;

  { TdcOrdType }
  TdcOrdType = class(TdcTypeImplement, IdcOrdType)
  private
    FOrdType: TOrdType;
  public
    function GetOrdType: TOrdType;
    procedure SetOrdType(Value: TOrdType);
    property OrdType: TOrdType read GetOrdType write SetOrdType;
  end;

  { TdcRecordType }
  TdcRecordType = class(TdcTypeImplement, IdcRecordType)
  private
    FCount: Integer;
    FFields: TList;
  public
    constructor CreateX(dcType: TdcType); override;
    destructor Destroy; override;
    function GetCount: Integer;
    procedure SetCount(Value: Integer);
    function GetField(Index: Integer): TdcRecordField;
    procedure SetField(Index: Integer; Value: TdcRecordField);
    property Count: Integer read GetCount write SetCount;
    property Fields[Index: Integer]: TdcRecordField read GetField write SetField;
  end;

  { TdcSetOrdType }
  TdcSetOrdType = class(TdcTypeImplement, IdcSetOrdType)
  private
    FCompType: IdcType;
  public
    function GetCompType: IdcType;
    procedure SetCompType(Value: IdcType);
    property CompType: IdcType read GetCompType write SetCompType;
  end;

  { TdcStringType }
  TdcStringType = class(TdcTypeImplement, IdcStringType)
  private
    FMaxLength: Integer;
  public
    function GetMaxLength: Integer;
    procedure SetMaxLength(Value: Integer);
    property MaxLength: Integer read GetMaxLength write SetMaxLength;
  end;

  { TdcType }

  TdcType = class(TInterfacedObject, IdcType, IdcArrayType, IdcClassType,
                                     IdcDynArrayType, IdcEnumerationType,
                                     IdcFloatType, IdcInt64Type, IdcInterfaceType,
                                     IdcNonSetOrdType, IdcOrdType, IdcRecordType,
                                     IdcStringType, IdcSetOrdType)
  private
    FPossTypeKinds: TEnhTypeKinds;
    FPossSizes: TTypeSizes;
    // interface implementation vars
    FTypeData: array[1..3] of IUnknown;
    // properties setters.
    function GetPossTypeKinds: TEnhTypeKinds;
    procedure SetPossTypeKinds(Value: TEnhTypeKinds);
    function GetTypeKind: TEnhTypeKind;
    function GetPossSizes: TTypeSizes;
    procedure SetPossSizes(Value: TTypeSizes);
    // Implementations getters.
    function GetArrayType: IdcArrayType;
    function GetClassType: IdcClassType;
    function GetDynArrayType: IdcDynArrayType;
    function GetEnumerationType: IdcEnumerationType;
    function GetFloatType: IdcFloatType;
    function GetInt64Type: IdcInt64Type;
    function GetInterfaceType: IdcInterfaceType;
    function GetNonSetOrdType: IdcNonSetOrdType;
    function GetOrdType: IdcOrdType;
    function GetRecordType: IdcRecordType;
    function GetSetOrdType: IdcSetOrdType;
    function GetStringType: IdcStringType;
  public
    constructor Create; virtual;
    // Properties.
    property PossTypeKinds: TEnhTypeKinds read GetPossTypeKinds write SetPossTypeKinds;
    property TypeKind: TEnhTypeKind read GetTypeKind;
    property PossSizes: TTypeSizes read GetPossSizes write SetPossSizes;
    // Interface implementations.
    property ArrayType: IdcArrayType read GetArrayType implements IdcArrayType;
    property AClassType: IdcClassType read GetClassType implements IdcClassType;
    property DynArrayType: IdcDynArrayType read GetDynArrayType implements IdcDynArrayType;
    property EnumerationType: IdcEnumerationType read GetEnumerationType implements IdcEnumerationType;
    property FloatType: IdcFloatType read GetFloatType implements IdcFloatType;
    property Int64Type: IdcInt64Type read GetInt64Type implements IdcInt64Type;
    property InterfaceType: IdcInterfaceType read GetInterfaceType implements IdcInterfaceType;
    property NonSetOrdType: IdcNonSetOrdType read GetNonSetOrdType implements IdcNonSetOrdType;
    property OrdType: IdcOrdType read GetOrdType implements IdcOrdType;
    property RecordType: IdcRecordType read GetRecordType implements IdcRecordType;
    property SetOrdType: IdcSetOrdType read GetSetOrdType implements IdcSetOrdType;
    property StringType: IdcStringType read GetStringType implements IdcStringType;
  end;

implementation

uses
  SysUtils, PEFileClass;

{ TdcTypeImplement }

function TdcTypeImplement.GetType: IdcType;
begin
  Result := FdcType as IdcType;
end;

function TdcTypeImplement.GetArrayType: IdcArrayType;
begin
  Result := FdcType as IdcArrayType;
end;

function TdcTypeImplement.GetClassType: IdcClassType;
begin
  Result := FdcType as IdcClassType;
end;

function TdcTypeImplement.GetDynArrayType: IdcDynArrayType;
begin
  Result := FdcType as IdcDynArrayType;
end;

function TdcTypeImplement.GetEnumerationType: IdcEnumerationType;
begin
  Result := FdcType as IdcEnumerationType;
end;

function TdcTypeImplement.GetFloatType: IdcFloatType;
begin
  Result := FdcType as IdcFloatType;
end;

function TdcTypeImplement.GetInt64Type: IdcInt64Type;
begin
  Result := FdcType as IdcInt64Type;
end;

function TdcTypeImplement.GetInterfaceType: IdcInterfaceType;
begin
  Result := FdcType as IdcInterfaceType;
end;

function TdcTypeImplement.GetNonSetOrdType: IdcNonSetOrdType;
begin
  Result := FdcType as IdcNonSetOrdType;
end;

function TdcTypeImplement.GetOrdType: IdcOrdType;
begin
  Result := FdcType as IdcOrdType;
end;

function TdcTypeImplement.GetRecordType: IdcRecordType;
begin
  Result := FdcType as IdcRecordType;
end;

function TdcTypeImplement.GetSetOrdType: IdcSetOrdType;
begin
  Result := FdcType as IdcSetOrdType;
end;

function TdcTypeImplement.GetStringType: IdcStringType;
begin
  Result := FdcType as IdcStringType;
end;

constructor TdcTypeImplement.CreateX(dcType: TdcType);
begin
  FdcType := dcType;
end;

{ TdcArrayType }

function TdcArrayType.GetCount: Integer;
begin
  Result := FCount;
end;

procedure TdcArrayType.SetCount(Value: Integer);
begin
  FCount := Value;
end;

function TdcArrayType.GetElementType: IdcType;
begin
  Result := FElementType;
end;

procedure TdcArrayType.SetElementType(Value: IdcType);
begin
  FElementType := Value;
end;

{ TdcClassType }

function TdcClassType.GetAClass: TClassInfo;
begin
  Result := FAClass;
end;

procedure TdcClassType.SetAClass(Value: TClassInfo);
begin
  FAClass := Value;
end;

{ TdcDynArrayType }

function TdcDynArrayType.GetElementType: IdcType;
begin
  Result := FElementType;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产77777蜜臀| 亚洲综合色成人| 蜜臀久久99精品久久久久宅男| 91精品免费在线| 国产成人午夜99999| 亚洲色图在线播放| 精品免费一区二区三区| 91免费在线播放| 男女性色大片免费观看一区二区 | 青青草伊人久久| 奇米影视一区二区三区小说| 成人性生交大合| 亚洲电影激情视频网站| 亚洲国产精品成人综合| 欧美日韩一区不卡| 不卡的电影网站| 久久精品国产亚洲a| 麻豆精品在线观看| 狠狠色狠狠色综合系列| 亚洲乱码国产乱码精品精的特点| 久久亚洲精品小早川怜子| 欧美私人免费视频| 99久免费精品视频在线观看 | 欧美xxxxxxxx| 日本一区二区视频在线观看| 欧美一级专区免费大片| 欧美日韩国产在线观看| 欧美性感一区二区三区| 精品国产乱子伦一区| 欧美精品tushy高清| 欧美日韩在线播放三区四区| 欧美一区日韩一区| 中文字幕一区二区三区蜜月| 国产精品三级av| 久久精品视频一区二区三区| 日韩免费电影网站| 精品区一区二区| 一区二区三区在线视频免费观看| 亚洲色图另类专区| 免费成人在线网站| 94色蜜桃网一区二区三区| 色伊人久久综合中文字幕| 色综合天天综合狠狠| 91原创在线视频| 欧美大白屁股肥臀xxxxxx| 国产精品成人网| 亚洲精品午夜久久久| 国产一区二区剧情av在线| 国产一区二区导航在线播放| 在线观看欧美日本| 欧美一区二区三区免费观看视频 | 日韩精品资源二区在线| 亚洲天堂2016| 国产最新精品免费| 91麻豆精品国产91久久久资源速度 | 国产99久久久久久免费看农村| 国产资源精品在线观看| 欧美视频一区二| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 久久久噜噜噜久久中文字幕色伊伊 | 国产成人av一区二区三区在线| 欧美影院一区二区| 亚洲欧美国产高清| 午夜精品爽啪视频| 国产精品亚洲成人| 色88888久久久久久影院按摩| 欧美日韩精品一二三区| 亚洲精品免费视频| 91视频精品在这里| 亚洲日穴在线视频| 91免费看片在线观看| 中文成人av在线| 666欧美在线视频| 一区二区三区四区亚洲| 色综合网站在线| 亚洲色图都市小说| 日本韩国欧美三级| 亚洲国产日韩精品| 成人综合婷婷国产精品久久免费| 精品国产三级电影在线观看| 黄色精品一二区| 久久免费的精品国产v∧| 国产精品一区二区免费不卡| 久久久国产综合精品女国产盗摄| 国产精品小仙女| 日本一区二区三区在线不卡| 处破女av一区二区| 夜色激情一区二区| 日韩一级视频免费观看在线| 亚洲精品久久嫩草网站秘色| 色丁香久综合在线久综合在线观看| 怡红院av一区二区三区| 69av一区二区三区| 国产福利精品一区二区| 国产精品女主播在线观看| 色哟哟亚洲精品| 日韩成人av影视| 在线观看91视频| 美女在线视频一区| 中文av一区特黄| 欧美精品日日鲁夜夜添| 极品少妇一区二区三区精品视频 | 亚洲成人av福利| 欧美videos大乳护士334| a在线欧美一区| 日日夜夜免费精品视频| 91美女在线看| 日本欧美在线观看| 国产精品丝袜久久久久久app| 色欧美日韩亚洲| 蜜桃av噜噜一区| 国产精品久久毛片| 日韩精品一区二区三区中文精品| 国产精品亚洲午夜一区二区三区| 亚洲视频每日更新| 欧美va在线播放| 欧美亚洲国产一区二区三区va | 国产日产欧美一区二区视频| 色爱区综合激月婷婷| 韩国精品在线观看| 亚洲成人激情自拍| 中文字幕一区二区三区不卡| 日韩一区二区三区三四区视频在线观看| 国产精品一级片在线观看| 亚洲影视资源网| 亚洲欧洲另类国产综合| 一区二区三区在线播放| 久久久久久久电影| 欧美福利电影网| 在线精品视频小说1| 成人avav在线| 成人网男人的天堂| 国产精品影视在线观看| 欧美a级一区二区| 丝袜美腿亚洲一区二区图片| 亚洲欧美另类图片小说| 日本一区二区三区在线不卡| 精品欧美久久久| 91精品婷婷国产综合久久性色| 日本丰满少妇一区二区三区| eeuss国产一区二区三区| 国产成人一级电影| 国产精品一区2区| 国产精品一区二区三区99| 精品一区二区在线视频| 精品一区二区三区的国产在线播放| 午夜精品视频在线观看| 午夜精品久久久久久久久久久| 一区二区三区四区国产精品| 亚洲欧美日韩一区| 国产精品久久久久影院色老大| 欧美韩国一区二区| 国产精品欧美一区二区三区| 中文字幕成人在线观看| 国产日韩欧美不卡在线| 国产女人aaa级久久久级| 亚洲www啪成人一区二区麻豆 | 午夜av一区二区三区| 亚洲一区二区三区四区不卡| 亚洲尤物在线视频观看| 婷婷国产在线综合| 日韩国产欧美三级| 精品在线免费视频| 国产suv精品一区二区三区| 粉嫩嫩av羞羞动漫久久久 | 日韩美女啊v在线免费观看| 中文字幕一区二区三区蜜月| 亚洲精品日韩专区silk| 日本不卡一二三| 国产精品一级片| 91美女视频网站| 欧美美女一区二区| 欧美电影免费观看高清完整版在线观看 | 91丨porny丨在线| 欧美军同video69gay| 久久婷婷综合激情| ...av二区三区久久精品| 婷婷激情综合网| 国产不卡视频在线播放| 91老师国产黑色丝袜在线| 欧美三级蜜桃2在线观看| 久久综合九色综合欧美98| 国产精品美女一区二区| 亚洲一区二区视频在线观看| 美女网站一区二区| 制服丝袜亚洲精品中文字幕| 精品国内片67194| 国产精品免费丝袜| 午夜精品爽啪视频| 不卡在线视频中文字幕| 欧美久久免费观看| 国产欧美中文在线| 亚洲在线视频一区| 国产盗摄女厕一区二区三区| 99免费精品视频| 久久久亚洲国产美女国产盗摄| 亚洲久草在线视频| 国内不卡的二区三区中文字幕| 色综合咪咪久久| 久久久.com|