FileZillaIntern.h 851 B

1234567891011121314151617181920212223242526
  1. //---------------------------------------------------------------------------
  2. #ifndef FileZillaInternH
  3. #define FileZillaInternH
  4. //---------------------------------------------------------------------------
  5. class TFileZillaIntf;
  6. //---------------------------------------------------------------------------
  7. class TFileZillaIntern
  8. {
  9. public:
  10. TFileZillaIntern(TFileZillaIntf * AOwner);
  11. bool PostMessage(WPARAM wParam, LPARAM lParam) const;
  12. CString GetOption(int OptionID) const;
  13. int GetOptionVal(int OptionID) const;
  14. inline const TFileZillaIntf * GetOwner() const { return FOwner; }
  15. int GetDebugLevel() const;
  16. void SetDebugLevel(int DebugLevel);
  17. protected:
  18. TFileZillaIntf * FOwner;
  19. int FDebugLevel;
  20. };
  21. //---------------------------------------------------------------------------
  22. #endif // FileZillaInternH