FileZillaIntern.h 723 B

1234567891011121314151617181920
  1. //---------------------------------------------------------------------------
  2. #ifndef FileZillaInternH
  3. #define FileZillaInternH
  4. //---------------------------------------------------------------------------
  5. class TFileZillaIntf;
  6. //---------------------------------------------------------------------------
  7. class TFileZillaIntern : public CApiLog
  8. {
  9. public:
  10. TFileZillaIntern(TFileZillaIntf * AOwner);
  11. virtual BOOL PostMessage(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) const;
  12. inline const TFileZillaIntf * GetOwner() const { return FOwner; }
  13. protected:
  14. TFileZillaIntf * FOwner;
  15. };
  16. //---------------------------------------------------------------------------
  17. #endif // FileZillaInternH