annotate bits/RequestResponseType.h @ 63:72c43bc69616

Validate JSON requests and responses
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 23 Sep 2016 14:20:06 +0100
parents 5b9690d18241
children
rev   line source
c@25 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@25 2
c@25 3 /*
c@25 4 Vampipe
c@25 5
c@25 6 Centre for Digital Music, Queen Mary, University of London.
c@25 7 Copyright 2006-2016 Chris Cannam and QMUL.
c@25 8
c@25 9 Permission is hereby granted, free of charge, to any person
c@25 10 obtaining a copy of this software and associated documentation
c@25 11 files (the "Software"), to deal in the Software without
c@25 12 restriction, including without limitation the rights to use, copy,
c@25 13 modify, merge, publish, distribute, sublicense, and/or sell copies
c@25 14 of the Software, and to permit persons to whom the Software is
c@25 15 furnished to do so, subject to the following conditions:
c@25 16
c@25 17 The above copyright notice and this permission notice shall be
c@25 18 included in all copies or substantial portions of the Software.
c@25 19
c@25 20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
c@25 21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c@25 22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c@25 23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
c@25 24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
c@25 25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
c@25 26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c@25 27
c@25 28 Except as contained in this notice, the names of the Centre for
c@25 29 Digital Music; Queen Mary, University of London; and Chris Cannam
c@25 30 shall not be used in advertising or otherwise to promote the sale,
c@25 31 use or other dealings in this Software without prior written
c@25 32 authorization.
c@25 33 */
c@25 34
c@25 35 #ifndef VAMPIPE_REQUEST_RESPONSE_TYPE_H
c@25 36 #define VAMPIPE_REQUEST_RESPONSE_TYPE_H
c@25 37
c@25 38 namespace vampipe {
c@25 39
c@25 40 enum class RRType {
c@25 41 List, Load, Configure, Process, Finish, NotValid
c@25 42 };
c@25 43
c@25 44 }
c@25 45
c@25 46 #endif
c@25 47