home *** CD-ROM | disk | FTP | other *** search
/ Computer Active Guide 2009 June / CAG06.ISO / Programos / TwonkyMediaManagerSetupStandard.exe / MediaManager / English.swf / scripts / mx / modules / ModuleBase.as < prev    next >
Encoding:
Text File  |  2010-02-09  |  347 b   |  19 lines

  1. package mx.modules
  2. {
  3.    import flash.events.EventDispatcher;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class ModuleBase extends EventDispatcher
  9.    {
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.       
  12.       public function ModuleBase()
  13.       {
  14.          super();
  15.       }
  16.    }
  17. }
  18.  
  19.