%%
%%
%%
%%Copyright2008TheMathWorks,Inc.
%%
%%Abstract:
%%CodegenerationsupportforIPCSetupblock
 
%implements "IPCPort" "C"
 
%%Function:Start============================================================
%%Abstract:
%%PerformStartfunction
%%
%function Start(block, system) Output
  %if ISFIELD(block, "IPCFile")
    %<GENERATE_TYPE(block, "Start", IPCFile, system)>
  %endif
%endfunction
  
%%Function:InitializeConditions=============================================
%%Abstract:
%%PerformInitializeConditionsfunction
%%
%function InitializeConditions(block, system) Output
  %if ISFIELD(block, "IPCFile")
    %<GENERATE_TYPE(block, "InitializeConditions", IPCFile, system)>
  %endif
%endfunction
     
%%Function:Outputs===========================================================
%%Abstract:
%%RuntheTLCoutputscriptcreatedduringthertwgenprocessforthe
%%block.
%%
%function Outputs(block, system) Output
  %if ISFIELD(block, "IPCFile")
    %<GENERATE_TYPE(block,"Outputs", IPCFile, system)>
  %endif
%endfunction
 
%function Terminate(block, system) Output
  %if ISFIELD(block, "IPCFile")
    %<GENERATE_TYPE(block, "Terminate", IPCFile, system)>
  %endif
%endfunction
 
%%[eof]msfunction.tlc