PylonUtilityIncludes.h 1000 B

1234567891011121314151617181920212223242526272829303132333435
  1. //-----------------------------------------------------------------------------
  2. // Basler pylon SDK
  3. // Copyright (c) 2008-2021 Basler AG
  4. // http://www.baslerweb.com
  5. // Author: JS
  6. //-----------------------------------------------------------------------------
  7. /*!
  8. \file
  9. \brief Master include for the PylonUtility library
  10. */
  11. #ifndef PYLONUTILITIESINCLUDES_H_INCLUDED__
  12. #define PYLONUTILITIESINCLUDES_H_INCLUDED__
  13. #include <pylon/Platform.h>
  14. #include <pylon/PylonUtility.h>
  15. #include <pylon/PylonImage.h>
  16. #include <pylon/ImageDecompressor.h>
  17. #include <pylon/ImageFormatConverter.h>
  18. #include <pylon/FeaturePersistence.h>
  19. #include <pylon/ImagePersistence.h>
  20. #if defined(PYLON_WIN_BUILD)
  21. // windows only headers
  22. # include <pylon/PylonBitmapImage.h>
  23. # include <pylon/AviWriter.h>
  24. #endif
  25. #include <pylon/VideoWriter.h>
  26. #if defined (PYLON_WIN_BUILD) && !defined (PYLON_NO_AUTO_IMPLIB)
  27. # include <pylon/PylonLinkage.h>
  28. # pragma comment(lib, PYLON_LIB_NAME( "PylonUtility" ))
  29. #endif
  30. #endif