123456789101112131415161718192021222324252627282930313233 |
- //-----------------------------------------------------------------------------
- // Basler pylon SDK
- // Copyright (c) 2012-2021 Basler AG
- // http://www.baslerweb.com
- // Author: Andreas Gau
- //-----------------------------------------------------------------------------
- /*!
- \file
- \brief Contains the USB specific grab result ptr class.
- */
- #ifndef INCLUDED_BASLERUSBGRABRESULTPTR_H_03519839
- #define INCLUDED_BASLERUSBGRABRESULTPTR_H_03519839
- #include <pylon/usb/BaslerUsbGrabResultData.h>
- #include <pylon/private/DeviceSpecificGrabResultPtr.h>
- namespace Pylon
- {
- /** \addtogroup Pylon_InstantCameraApiUsb
- * @{
- */
- /// The USB specific grab result smart pointer.
- PYLON_DEFINE_DEVICE_SPECIFIC_GRAB_RESULT_PTR( CBaslerUsbGrabResultPtr, CBaslerUsbGrabResultData )
- /**
- * @}
- */
- }
- #endif /* INCLUDED_BASLERUSBGRABRESULTPTR_H_03519839 */
|