1 2 3 4 5 6 7 8 9 10 11
#ifndef SWIFTEN_PAYLOAD_H #define SWIFTEN_PAYLOAD_H namespace Swift { class Payload { public: virtual ~Payload(); }; } #endif