#ifndef SWIFTEN_PAYLOAD_H
#define SWIFTEN_PAYLOAD_H

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

#endif