mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
16 lines
210 B
R
16 lines
210 B
R
#include "Procedure.h"
|
|
#include "Machine.h"
|
|
|
|
@implementation Procedure
|
|
- (void) invokeOnMachine: (Machine *) m
|
|
{
|
|
[m procedure: self];
|
|
return;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "<procedure>";
|
|
}
|
|
|
|
@end
|