2013-10-03 17:38:47 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* Enums.h *
|
|
|
|
* *
|
|
|
|
* System::Xml::XPath Interfaces definition file. *
|
|
|
|
* Copyright (c) XFX Team. All rights reserved. *
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef _SYSTEM_XML_XPATH_XPATHNAVIGATOR_
|
|
|
|
#define _SYSTEM_XML_XPATH_XPATHNAVIGATOR_
|
2013-05-30 21:42:33 +02:00
|
|
|
|
|
|
|
#include <System/Types.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace Xml
|
|
|
|
{
|
|
|
|
namespace XPath
|
|
|
|
{
|
|
|
|
class XPathNavigator;
|
|
|
|
|
2013-10-03 17:38:47 +02:00
|
|
|
/**
|
|
|
|
* Provides an accessor to the System::Xml::XPath::XPathNavigator class.
|
|
|
|
*/
|
2013-05-30 21:42:33 +02:00
|
|
|
interface IXPathNavigable
|
|
|
|
{
|
|
|
|
public:
|
2013-10-03 17:38:47 +02:00
|
|
|
/**
|
|
|
|
* Returns a new System.Xml.XPath.XPathNavigator object.
|
|
|
|
*/
|
2013-05-30 21:42:33 +02:00
|
|
|
virtual XPathNavigator* CreateNavigator();
|
|
|
|
|
|
|
|
virtual ~IXPathNavigable() { }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-03 17:38:47 +02:00
|
|
|
|
|
|
|
#endif //_SYSTEM_XML_XPATH_XPATHNAVIGATOR_
|