mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
api: make members protected
This commit is contained in:
parent
5f2f9b4250
commit
b8e486af15
2 changed files with 6 additions and 4 deletions
|
@ -35,11 +35,12 @@ namespace api {
|
|||
|
||||
class NodeRequest : public Request {
|
||||
|
||||
protected:
|
||||
Node *node;
|
||||
|
||||
public:
|
||||
using Request::Request;
|
||||
|
||||
Node *node;
|
||||
|
||||
virtual void
|
||||
prepare();
|
||||
};
|
||||
|
|
|
@ -35,11 +35,12 @@ namespace api {
|
|||
|
||||
class PathRequest : public Request {
|
||||
|
||||
protected:
|
||||
class Path *path;
|
||||
|
||||
public:
|
||||
using Request::Request;
|
||||
|
||||
class Path *path;
|
||||
|
||||
virtual void
|
||||
prepare();
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue