F
Frank.cai
Unregistered / Unconfirmed
GUEST, unregistred user!
unit uLotteryParameter;
interface
uses Classes,SysUtils,QDialogs;
type
TMyNum=array[0..40] of string;
//
type Tmygroup =record
code :smallint;
groupid :smallint;
groupname :string;
minnum :smallint;
maxnum :smallint;
end;
type Pmygroup =^Tmygroup;
/*************************************************/
/* 我在其他单元中定义了以上的pmygroup数据类型,*/
/* 我怎样写才能在定义下边的这个类时引用到上边的数据类型*/
/*如果跟我现在这样写的话,系统会提示没有声明Pmygroup这个类型 */
/*************************************************/
type
TMyParameter=class(TObject)
private
procedure init;
//下边的过程定义当中要用到外部的一个自定义数据类型
procedure loadgroup(var rtnGroupmygroup;iGroupid:smallint)
public
constructor create;
published
end;
implementation
interface
uses Classes,SysUtils,QDialogs;
type
TMyNum=array[0..40] of string;
//
type Tmygroup =record
code :smallint;
groupid :smallint;
groupname :string;
minnum :smallint;
maxnum :smallint;
end;
type Pmygroup =^Tmygroup;
/*************************************************/
/* 我在其他单元中定义了以上的pmygroup数据类型,*/
/* 我怎样写才能在定义下边的这个类时引用到上边的数据类型*/
/*如果跟我现在这样写的话,系统会提示没有声明Pmygroup这个类型 */
/*************************************************/
type
TMyParameter=class(TObject)
private
procedure init;
//下边的过程定义当中要用到外部的一个自定义数据类型
procedure loadgroup(var rtnGroupmygroup;iGroupid:smallint)
public
constructor create;
published
end;
implementation