FOSSology  4.7.1
Open Source License Compliance by Open Source Software
ReuserState.cc
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 #include "ReuserState.hpp"
7 
8 ReuserState::ReuserState(int agentId)
9  : agentId(agentId)
10 {
11 }
12 
13 void ReuserState::setAgentId(int agentId)
14 {
15  this->agentId = agentId;
16 }
17 
18 int ReuserState::getAgentId() const
19 {
20  return agentId;
21 }