33 lines
596 B
ObjectPascal
33 lines
596 B
ObjectPascal
unit WeeklyPlan;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
wItem;
|
|
|
|
type
|
|
TWeeklyPlan = class(TwItem)
|
|
private
|
|
{ Private declarations }
|
|
FOrdNum: string;
|
|
FThisWeek: string;
|
|
FNextWeek: string;
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
property OrdNum: string read FOrdNum write FOrdNum;
|
|
property ThisWeek: string read FThisWeek write FThisWeek;
|
|
property NextWeek: string read FNextWeek write FNextWeek;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|
|
|