/**
 * file Module.js with sub applications
 * @class Module
 * @author Janusz Rygał
 * @date 12.08.2008 
 */

Ext.app.Module = function(config){
    Ext.apply(this, config);
    Ext.app.Module.superclass.constructor.call(this);
    this.init();
}

Ext.extend(Ext.app.Module, Ext.util.Observable, {
    init : Ext.emptyFn
});