1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint cc43a97149 Updated libSystem.XML file comments
Added missing TypeInfos to libSystem
Updated libSystem file comments
2013-10-03 17:38:47 +02:00

38 lines
881 B
C++

/*****************************************************************************
* 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_
#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() { }
};
}
}
}
#endif //_SYSTEM_XML_XPATH_XPATHNAVIGATOR_