summaryrefslogtreecommitdiff
path: root/project2/sourceObject.h
blob: fc010d9a9eff3e782ee729877df82bd9c8acc30c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SOURCEOBJECT_H
#define SOURCEOBJECT_H

#include <libxml++/nodes/element.h>

class _Project2SourceObject {
	public:
		_Project2SourceObject(const xmlpp::Element * p);
		const std::string name;
};

#endif