diff options
Diffstat (limited to 'plugins/Quotes/IXMLEngine.h')
-rw-r--r-- | plugins/Quotes/IXMLEngine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Quotes/IXMLEngine.h b/plugins/Quotes/IXMLEngine.h index e20fc0e64e..910c3efea0 100644 --- a/plugins/Quotes/IXMLEngine.h +++ b/plugins/Quotes/IXMLEngine.h @@ -7,8 +7,8 @@ public: typedef boost::shared_ptr<IXMLNode> TXMLNodePtr;
public:
- IXMLNode(){}
- virtual ~IXMLNode(){}
+ IXMLNode() {}
+ virtual ~IXMLNode() {}
virtual size_t GetChildCount()const = 0;
virtual TXMLNodePtr GetChildNode(size_t nIndex)const = 0;
@@ -31,9 +31,9 @@ inline tostream& operator<<(tostream& o,const IXMLNode& node) class IXMLEngine
{
public:
- IXMLEngine(){}
+ IXMLEngine() {}
- virtual ~IXMLEngine(){}
+ virtual ~IXMLEngine() {}
virtual IXMLNode::TXMLNodePtr LoadFile(const tstring& rsFileName)const = 0;
virtual bool SaveFile(const tstring& rsFileName,const IXMLNode::TXMLNodePtr& pNode)const = 0;
|