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

#include <libxml++/nodes/element.h>
#include <boost/shared_ptr.hpp>

class _Project2SourceObject {
	public:
		_Project2SourceObject(const xmlpp::Element * p);
		virtual ~_Project2SourceObject() = 0;
		const std::string name;
};
typedef boost::shared_ptr<_Project2SourceObject> Project2SourceObject;

#endif