/* * Copyright (c) 2014 Remko Tronçon and Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include namespace Swift { class SWIFTEN_API IsodeIQDelegation : public Payload { public: IsodeIQDelegation(); virtual ~IsodeIQDelegation(); boost::shared_ptr getForward() const { return forward; } void setForward(boost::shared_ptr value) { this->forward = value ; } private: boost::shared_ptr forward; }; }