PNP_PIbd-31_Rodionov_I_A_Co.../models/baseentity.cpp

15 lines
157 B
C++
Raw Permalink Normal View History

2024-12-24 18:02:23 +04:00
#include "baseentity.h"
BaseEntity::BaseEntity()
{}
int BaseEntity::id() const
{
return _id;
}
void BaseEntity::setId(int newId)
{
_id = newId;
}