Classdesc 3.44
polyRESTProcessBase.h
1/*
2 @copyright Russell Standish 2021
3 @author Russell Standish
4 This file is part of Classdesc
5
6 Open source licensed under the MIT license. See LICENSE for details.
7*/
8
9#ifndef CLASSDESC_POLYRESTPROCESSBASE_H
10#define CLASSDESC_POLYRESTPROCESSBASE_H
11namespace classdesc
12{
13 struct RESTProcess_t;
15 {
16 virtual void RESTProcess(RESTProcess_t&, const std::string&) const=0;
17 virtual void RESTProcess(RESTProcess_t&, const std::string&)=0;
18 virtual ~PolyRESTProcessBase() {}
19 };
20}
21#endif
Contains definitions related to classdesc functionality.
Definition polyRESTProcessBase.h:15
REST processor registry.
Definition RESTProcess_base.h:351