PylonGUIIncludes.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. //-----------------------------------------------------------------------------
  2. // Basler pylon SDK
  3. // Copyright (c) 2011-2021 Basler AG
  4. // http://www.baslerweb.com
  5. // Author: NN
  6. //-----------------------------------------------------------------------------
  7. /*!
  8. \file
  9. \brief Master include for Pylon GUI.
  10. If you intend to use the GUI classes and functions you must include this file explicitly.
  11. This file will \e not be included automatically when you include pylon/PylonIncludes.h.
  12. \sa \link Pylon::CPylonImageWindow CPylonImageWindow \endlink
  13. \sa \link Pylon::DisplayImage DisplayImage \endlink
  14. */
  15. #ifndef PYLON_GUI_INCLUDEDS_H_INCLUDED__
  16. #define PYLON_GUI_INCLUDEDS_H_INCLUDED__
  17. #include <pylon/Platform.h>
  18. #include <pylon/PylonLinkage.h>
  19. #include <pylon/PylonGUI.h>
  20. // Add the lib to the linkers input libraries.
  21. #if defined(_MSC_VER) && defined(PYLON_WIN_BUILD)
  22. # ifndef PYLON_NO_AUTO_IMPLIB
  23. # pragma comment(lib, PYLON_LIB_NAME( "PylonGUI" ))
  24. # endif
  25. #endif
  26. #endif // PYLON_GUI_INCLUDEDS_H_INCLUDED__