pylon/PylonImageUserBufferEventHandler.h#
Namespaces#
Name |
---|
Pylon Contains definitions of pylon types. |
Classes#
Name | |
---|---|
class | Pylon::CPylonImageUserBufferEventHandler The CPylonImage user buffer event handler base class. |
Defines#
Name | |
---|---|
INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_ |
Macros Documentation#
define INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_#
#define INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_
Source code#
//-----------------------------------------------------------------------------
// Basler pylon SDK
// Copyright (c) 2021-2022 Basler AG
// http://www.baslerweb.com
// Author: JS
//-----------------------------------------------------------------------------
#pragma once
#ifndef INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_
#define INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_
#include <pylon/stdinclude.h>
#pragma pack(push, PYLON_PACKING)
namespace Pylon
{
class CPylonImageUserBufferEventHandler
{
public:
virtual void OnPylonImageUserBufferDetached( void* pUserBuffer, size_t bufferSizeBytes )
{
PYLON_UNUSED( pUserBuffer );
PYLON_UNUSED( bufferSizeBytes );
}
};
}
#pragma pack(pop)
#endif /* INCLUDED_PYLONIMAGEUSERBUFFEREVENTHANDLER_H_ */
Updated on 5 July 2022 at 15:30:01