home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / pywin / mfc / thread.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  1KB  |  32 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. import object
  5. import win32ui
  6.  
  7. class WinThread(object.CmdTarget):
  8.     
  9.     def __init__(self, initObj = None):
  10.         if initObj is None:
  11.             initObj = win32ui.CreateThread()
  12.         object.CmdTarget.__init__(self, initObj)
  13.  
  14.     
  15.     def InitInstance(self):
  16.         pass
  17.  
  18.     
  19.     def ExitInstance(self):
  20.         pass
  21.  
  22.  
  23.  
  24. class WinApp(WinThread):
  25.     
  26.     def __init__(self, initApp = None):
  27.         if initApp is None:
  28.             initApp = win32ui.GetApp()
  29.         WinThread.__init__(self, initApp)
  30.  
  31.  
  32.