File tree Expand file tree Collapse file tree 3 files changed +403
-25
lines changed Expand file tree Collapse file tree 3 files changed +403
-25
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ namespace classdesc
48
48
getClassdescObjectImpl (T& obj) {return nullptr ;}
49
49
public:
50
50
virtual ~RESTProcessBase () {}
51
- // / perform the REST operation, with \a remainder being the query string and \a arguments as body text
51
+ // / perform the REST operation, with \a path being the path string and \a arguments as body text
52
52
// / result of operation is returned as an object, and can be serialised into REST_PROCESS_BUFFER using asBuffer
53
- virtual RPPtr process (const string& remainder , const REST_PROCESS_BUFFER& arguments)=0;
53
+ virtual RPPtr process (const string& path , const REST_PROCESS_BUFFER& arguments)=0;
54
54
virtual REST_PROCESS_BUFFER asBuffer () const =0;
55
55
// / return signature(s) of the operations
56
56
virtual std::vector<Signature> signature () const =0;
@@ -64,7 +64,7 @@ namespace classdesc
64
64
template <class F > Signature functionSignature () const ;
65
65
// / returns a pointer to the underlying object if it is one of type T, otherwise null
66
66
template <class T > T* getObject ();
67
- // / @{ returns a classdesc object is referring to an object derived from classdesc::object
67
+ // / @{ returns a classdesc object if referring to an object derived from classdesc::object
68
68
virtual object* getClassdescObject () {return nullptr ;}
69
69
virtual const object* getConstClassdescObject () {return nullptr ;}
70
70
// / @}
You can’t perform that action at this time.
0 commit comments