#ifndef SWIFTEN_ELEMENT_H
#define SWIFTEN_ELEMENT_H

namespace Swift {
	class Element {
		public:
			virtual ~Element();
	};
}

#endif