123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- //-----------------------------------------------------------------------------
- // (c) 2008 by Basler Vision Technologies
- // Section: Vision Components
- // Project: GenApi
- // Author: Fritz Dierks
- // $Header$
- //
- // License: This file is published under the license of the EMVA GENICAM_NAMESPACE Standard Group.
- // A text file describing the legal terms is included in your installation as 'GenICam_license.pdf'.
- // If for some reason you are missing this file please contact the EMVA or visit the website
- // (http://www.GENICAM_NAMESPACE.org) for a full copy.
- //
- // THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM_NAMESPACE STANDARD GROUP "AS IS"
- // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM_NAMESPACE STANDARD GROUP
- // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
- // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- // POSSIBILITY OF SUCH DAMAGE.
- //-----------------------------------------------------------------------------
- /*!
- \file
- */
- #ifndef CLPROTOCOL_XMLID_H
- #define CLPROTOCOL_XMLID_H
- #include <Base/GCBase.h>
- #include <Base/GCUtilities.h>
- #include <CLProtocol/CVersion.h>
- namespace CLProtocol
- {
- //! Helper class which can split XMLIDs strings into tokens
- /*! \ingroup PublicInterfaces */
- class CLPROTOCOL_DECL CXMLID
- {
- public:
- //! returns the token separator string
- static const char* GetTokenSeparator();
-
- //! returns the token separator string
- /** \deprecated This function has been declared <b>deprecated</b> because of a typo in the functions name. Use <b>CXMLID::GetTokenSeparator()</b> instead.
- */
- GENICAM_DEPRECATED( static const char* GetTokenSeperator() );
-
- //! Constructor
- CXMLID();
- //! Parses the XML ID
- bool FromString(const GENICAM_NAMESPACE::gcstring &XMLID);
- //! Returns the original XML ID
- GENICAM_NAMESPACE::gcstring ToString();
- //! retrieves the schema version of the XML file
- CVersion GetSchemaVersion() const;
- //! retrieves the schema version of the XML file
- CVersion GetDeviceVersion() const;
- //! retrieves the schema version of the XML file
- GENICAM_NAMESPACE::gcstring GetDeviceIDTemplate() const;
- //! Comparison (for sorting)
- bool operator>(CXMLID& XMLID);
- private:
- //! The positions of the tokens within the XMLID string
- typedef enum
- {
- xidSchemaVersion = 0,
- xidDeviceIDTemplate = 1,
- xidDeviceVersion = 2
- } EXMLIDIndex;
- //! The original string
- GENICAM_NAMESPACE::gcstring m_XMLID;
- //! The middle part of the XML ID
- GENICAM_NAMESPACE::gcstring m_DeviceIDTemplate;
- //! The first part of the XML ID
- CVersion m_SchemaVersion;
- //! The last part of the XML ID
- CVersion m_DeviceVersion;
- };
- //! for sorting a vector of pointers to CXMLID objects
- /*! returns true if pA comes before pB */
- inline bool CompareCXMLID( CXMLID *pA, CXMLID *pB )
- {
- return *pA > *pB;
- }
- }
- #endif // CLPROTOCOL_XMLID_H
|