home *** CD-ROM | disk | FTP | other *** search
- /*
- File: DispMod.cpp
-
- Contains: Implementation of ODDispatchModule
-
- Owned by: Chris Linn
-
- Copyright: © 1994 - 1996 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <2> 6/21/96 CSL 1343659: ODDispatchModule should be
- dyanamic SOM class.
- <6> 8/15/95 RR #1276680 Removed redundant fields, and
- uninit and Purgeoverrides.
- <5> 8/3/95 RR #1257260: Collapse B classes. Remove
- somInit methods. Don't call IsInitialized
- or SubclassResponsibility
- <4> 6/15/95 RR #1254828/1255536 Added eventInfo to
- Dispatch
- <3> 5/26/95 RR #1251403: Multithreading naming support
- <2> 4/13/95 RR # 1216618 Added SOM_TRY
- <1> 9/26/94 RR first checked in
-
- To Do:
- */
-
-
- /*
- * This file was generated by the SOM Compiler.
- * Generated using:
- * SOM Emitter emitxtm.dll: somc/smmain.c
- */
-
- #define ODDispatchModule_Class_Source
- #define VARIABLE_MACROS
- #include <DispMod.xih>
-
- SOM_Scope void SOMLINK ODDispatchModuleInitDispatchModule(ODDispatchModule *somSelf, Environment *ev,
- ODSession* session)
- {
- //ODDispatchModuleData *somThis = ODDispatchModuleGetData(somSelf);
- ODDispatchModuleMethodDebug("ODDispatchModule","ODDispatchModuleInitDispatchModule");
-
- SOM_TRY
-
- somSelf->InitObject(ev);
-
- SOMClass* cls = somSelf->somGetClass();
- cls->somMakeDynamicClassReference();
- somReleaseClassReference ( cls );
-
- SOM_CATCH_ALL
- SOM_ENDTRY
- }
-
- SOM_Scope ODBoolean SOMLINK ODDispatchModuleDispatch(ODDispatchModule *somSelf, Environment *ev,
- ODEventData* event,
- ODEventInfo* eventInfo)
- {
- ODDispatchModuleMethodDebug("ODDispatchModule","ODDispatchModuleDispatch");
-
- return kODFalse;
- }
-
-