Add early init to ChanAssistList constructor, forward it to Module.

git-svn-id: http://voip.null.ro/svn/yate@1866 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2008-04-01 07:45:57 +00:00
parent 699bb6b3f6
commit a1622a363e
1 changed files with 3 additions and 2 deletions

View File

@ -286,9 +286,10 @@ protected:
/**
* Constructor
* @param name Name of the module
* @param earlyInit True to attempt to initialize module before others
*/
inline ChanAssistList(const char* name)
: Module(name, "misc"), m_first(true)
inline ChanAssistList(const char* name, bool earlyInit = false)
: Module(name, "misc", earlyInit), m_first(true)
{ }
/**