home *** CD-ROM | disk | FTP | other *** search
- ********************
- ********************
- **
- ** Source File ... Object.CH
- **
- ** Application ...
- ** Copyright (c) 1990 Lamaura Development Limited
- ** All Rights Reserved
- **
- ** Author ........ Philip de Lisle
- ** Last Update ... 16 August 1990 at 3:15 AM
- ** Purpose ....... Header file for User Defined Objects
- **
- ********************
- ********************
-
-
- #define OBJ_NAME 1
- #define OBJ_INSTANCE 2
- #define OBJ_METHOD 3
-
-
- #command SEND <obj>:<msg>([<arg>]) => ;
- OEval(<obj>, #<msg>, [<arg>], .t.)
-
- #command SEND <obj>:<msg> := <arg> => ;
- OEval(<obj>, #<msg>, <arg>, .t.)
-
-
- #command SEND <obj>:<msg> TO <x> => ;
- <x> := OEval(<obj>, #<msg>, NIL, .f.)
-
- #command SEND <obj>:<msg>([<arg>]) TO <x> => ;
- <x> := OEval(<obj>, #<msg>, [<arg>], .f.)
-