c@31: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@31: c@31: /* c@31: Vampipe c@31: c@31: Centre for Digital Music, Queen Mary, University of London. c@31: Copyright 2006-2016 Chris Cannam and QMUL. c@31: c@31: Permission is hereby granted, free of charge, to any person c@31: obtaining a copy of this software and associated documentation c@31: files (the "Software"), to deal in the Software without c@31: restriction, including without limitation the rights to use, copy, c@31: modify, merge, publish, distribute, sublicense, and/or sell copies c@31: of the Software, and to permit persons to whom the Software is c@31: furnished to do so, subject to the following conditions: c@31: c@31: The above copyright notice and this permission notice shall be c@31: included in all copies or substantial portions of the Software. c@31: c@31: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, c@31: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF c@31: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND c@31: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR c@31: ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF c@31: CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION c@31: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. c@31: c@31: Except as contained in this notice, the names of the Centre for c@31: Digital Music; Queen Mary, University of London; and Chris Cannam c@31: shall not be used in advertising or otherwise to promote the sale, c@31: use or other dealings in this Software without prior written c@31: authorization. c@31: */ c@31: c@31: #ifndef VAMPIPE_REQUEST_OR_RESPONSE_H c@31: #define VAMPIPE_REQUEST_OR_RESPONSE_H c@31: c@31: #include "RequestResponseType.h" c@31: c@31: #include c@31: #include c@31: c@31: #include c@31: #include c@31: c@31: namespace vampipe { c@31: c@31: class RequestOrResponse c@31: { c@31: public: c@31: enum Direction { c@31: Request, Response c@31: }; c@31: c@31: RequestOrResponse() : // nothing by default c@31: direction(Request), c@31: type(RRType::NotValid), c@55: success(false) { } c@31: c@31: Direction direction; c@31: RRType type; c@31: bool success; c@31: std::string errorText; c@31: c@56: Vamp::HostExt::ListResponse listResponse; c@31: Vamp::HostExt::LoadRequest loadRequest; c@31: Vamp::HostExt::LoadResponse loadResponse; c@31: Vamp::HostExt::ConfigurationRequest configurationRequest; c@31: Vamp::HostExt::ConfigurationResponse configurationResponse; c@31: Vamp::HostExt::ProcessRequest processRequest; c@31: Vamp::HostExt::ProcessResponse processResponse; c@55: Vamp::HostExt::FinishRequest finishRequest; c@31: Vamp::HostExt::ProcessResponse finishResponse; c@31: }; c@31: c@31: } c@31: c@31: #endif