CMakeSetupGUIImplementation.h 763 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef CMakeSetupGUIImplementation_h
  2. #define CMakeSetupGUIImplementation_h
  3. #include "CMakeSetupGUI.h"
  4. /**
  5. *
  6. * This class implements the virtual methods
  7. * declared in the GUI interface
  8. *
  9. */
  10. class CMakeSetupGUIImplementation : public CMakeSetupGUI
  11. {
  12. public:
  13. CMakeSetupGUIImplementation();
  14. virtual ~CMakeSetupGUIImplementation();
  15. virtual void Close( void );
  16. virtual void Show( void );
  17. virtual void BuildProjectFiles( void );
  18. virtual void BrowseForBinaryPath( void );
  19. virtual void BrowseForSourcePath( void );
  20. virtual void SetBinaryPath( const char * path );
  21. virtual void SetSourcePath( const char * path );
  22. virtual bool VerifyBinaryPath( const char * path );
  23. virtual bool VerifySourcePath( const char * path );
  24. };
  25. #endif