- some should be the same as previous commit (sorry!) - some should be new: LINT checks, ...?
15 lines
163 B
C++
15 lines
163 B
C++
#ifndef XMLSAVE_H
|
|
#define XMLSAVE_H
|
|
|
|
#include "xml.h"
|
|
|
|
class XMLsave {
|
|
|
|
public:
|
|
|
|
virtual void writeToXML(XMLDoc* doc, XMLElem* dst) = 0;
|
|
|
|
};
|
|
|
|
#endif // XMLSAVE_H
|