1
0
Fork 0
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:
Steffen Vogel 2022-03-28 10:41:46 +02:00
parent 5f2f9b4250
commit b8e486af15
2 changed files with 6 additions and 4 deletions

View file

@ -35,11 +35,12 @@ namespace api {
class NodeRequest : public Request {
protected:
Node *node;
public:
using Request::Request;
Node *node;
virtual void
prepare();
};

View file

@ -35,11 +35,12 @@ namespace api {
class PathRequest : public Request {
protected:
class Path *path;
public:
using Request::Request;
class Path *path;
virtual void
prepare();
};