Commit be78de61 authored by tepelmann's avatar tepelmann
Browse files

Container module importing all known LibSip modules in a public way, so the...

Container module importing all known LibSip modules in a public way, so the imports will be visible for all modules importing the LibSip_Library module.
parent 23222faf
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
/*
 * @author      STF471
 * @version     $Id: LibSip_Steps.ttcn 614 2014-07-07 10:01:14Z tepelmann $
 * @desc        This module provides all modules of the LibSip as public imports.
 *              Importing this module will automatically import all here listed modules,
 *              no other LibSip_xxx module import needed in this case.
 */
module LibSip_Library {
    
    public import from LibSip_Interface all;
    public import from LibSip_MessageBodyTypes all;
    public import from LibSip_PIXITS all;
    public import from LibSip_SDPTypes all;
    public import from LibSip_SimpleMsgSummaryTypes all;
    public import from LibSip_SMSFunctions all;
    public import from LibSip_SMSTemplates all;
    public import from LibSip_SMSTypesAndValues all;
    public import from LibSip_Steps all;
    public import from LibSip_Templates all;
    public import from LibSip_XMLTypes all;
    
}
 No newline at end of file