mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 05:58:13 +00:00
26 lines
557 B
C#
26 lines
557 B
C#
![]() |
using System;
|
||
|
using System.Xml;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace TechBot.Library
|
||
|
{
|
||
|
public abstract class XmlCommand : Command
|
||
|
{
|
||
|
protected XmlDocument m_XmlDocument;
|
||
|
|
||
|
public XmlCommand(TechBotService techBot)
|
||
|
: base(techBot)
|
||
|
{
|
||
|
m_XmlDocument = new XmlDocument();
|
||
|
m_XmlDocument.Load(XmlFile);
|
||
|
}
|
||
|
|
||
|
public abstract string XmlFile { get; }
|
||
|
|
||
|
public XmlDocument XmlDocument
|
||
|
{
|
||
|
get { return m_XmlDocument; }
|
||
|
}
|
||
|
}
|
||
|
}
|