FOSSology  4.7.1
Open Source License Compliance by Open Source Software
ReuserState.hpp
1 /*
2  SPDX-License-Identifier: GPL-2.0-only
3  Author: Dietmar Helmut Leher <helmut.leher.ext@vaillant-group.com>
4  SPDX-FileCopyrightText: © 2026 Vaillant GmbH
5 */
6 #pragma once
7 
15 {
16 public:
17  explicit ReuserState(int agentId);
18 
19  void setAgentId(int agentId);
20  int getAgentId() const;
21 
22 private:
23  int agentId;
24 };
Holds the runtime state of the reuser agent (agent id).
Definition: ReuserState.hpp:15