1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00

24 lines
393 B
C
Raw Normal View History

#include <System/Types.h>
namespace System
{
namespace Xml
{
namespace XPath
{
class XPathNavigator;
// Provides an accessor to the System::Xml::XPath::XPathNavigator class.
interface IXPathNavigable
{
public:
// Returns a new System.Xml.XPath.XPathNavigator object.
virtual XPathNavigator* CreateNavigator();
virtual ~IXPathNavigable() { }
};
}
}
}