blob: d6531ff18181ce9ffaef386a7b6b7dc4b1ad9463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SOURCEOBJECT_H
#define SOURCEOBJECT_H
#include "ustring.h"
#include <libxml/tree.h>
class _Project2SourceObject {
public:
_Project2SourceObject(xmlNodePtr p);
const ustring name;
};
#endif
|