Files
gf-core/examples/dialogue/Agenda.gf
2006-05-16 13:07:41 +00:00

13 lines
224 B
Plaintext

abstract Agenda = Dialogue, Weekday ** {
fun
Day : Kind ;
Meeting : Kind ;
Add : Oper2 Meeting Day ;
Remove : Oper1 Meeting ;
Interrupt : Oper0 ;
day : WDay -> Object Day ;
}