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