00001 #ifndef COMPOSITE_TRANSFER_ORDER_HPP_ 00002 #define COMPOSITE_TRANSFER_ORDER_HPP_ 00003 00004 #include "TransferWithOwnershipData.hpp" 00005 00006 namespace mmpt{ 00007 00008 class CompositeTransferWithOwnershipResult 00009 : public TransferWithOwnershipResult 00010 { 00011 public: 00012 std::vector<TransferOrder> transfer_orders; 00013 }; 00014 00015 } 00016 00017 #endif