c@25: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@25: c@25: /* c@25: Vampipe c@25: c@25: Centre for Digital Music, Queen Mary, University of London. c@25: Copyright 2006-2016 Chris Cannam and QMUL. c@25: c@25: Permission is hereby granted, free of charge, to any person c@25: obtaining a copy of this software and associated documentation c@25: files (the "Software"), to deal in the Software without c@25: restriction, including without limitation the rights to use, copy, c@25: modify, merge, publish, distribute, sublicense, and/or sell copies c@25: of the Software, and to permit persons to whom the Software is c@25: furnished to do so, subject to the following conditions: c@25: c@25: The above copyright notice and this permission notice shall be c@25: included in all copies or substantial portions of the Software. c@25: c@25: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, c@25: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF c@25: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND c@25: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR c@25: ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF c@25: CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION c@25: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. c@25: c@25: Except as contained in this notice, the names of the Centre for c@25: Digital Music; Queen Mary, University of London; and Chris Cannam c@25: shall not be used in advertising or otherwise to promote the sale, c@25: use or other dealings in this Software without prior written c@25: authorization. c@25: */ c@25: c@25: #ifndef VAMPIPE_REQUEST_RESPONSE_TYPE_H c@25: #define VAMPIPE_REQUEST_RESPONSE_TYPE_H c@25: c@25: namespace vampipe { c@25: c@25: enum class RRType { c@25: List, Load, Configure, Process, Finish, NotValid c@25: }; c@25: c@25: } c@25: c@25: #endif c@25: