PNP_PIbd-31_Rodionov_I_A_Co.../models/baseentity.cpp
2024-12-24 18:02:23 +04:00

15 lines
157 B
C++

#include "baseentity.h"
BaseEntity::BaseEntity()
{}
int BaseEntity::id() const
{
return _id;
}
void BaseEntity::setId(int newId)
{
_id = newId;
}