12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //-----------------------------------------------------------------------------
- // Basler pylon SDK
- // Copyright (c) 2006-2021 Basler AG
- // http://www.baslerweb.com
- // Author: AH
- //-----------------------------------------------------------------------------
- /*!
- \file
- \internal
- \brief Declaration of the IXmlFileProvider interface
- */
- #ifndef __PYLONXMLFILEPROVIDER_H__
- #define __PYLONXMLFILEPROVIDER_H__
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include <pylon/Platform.h>
- #ifdef _MSC_VER
- # pragma pack(push, PYLON_PACKING)
- #endif /* _MSC_VER */
- #include <pylon/stdinclude.h>
- namespace Pylon
- {
- class CDeviceInfo;
- /**
- \internal
- */
- interface PUBLIC_INTERFACE IXmlFileProvider
- {
- virtual bool CanProvideXmlFile( const CDeviceInfo& ) = 0;
- virtual void ProvideXmlFile(
- const CDeviceInfo& di,
- String_t& RecommendedFileName,
- String_t& XmlString
- ) = 0;
- };
- }
- #ifdef _MSC_VER
- # pragma pack(pop)
- #endif /* _MSC_VER */
- #endif /* __PYLONXMLFILEPROVIDER_H__ */
|