yacreader/common/library_item.cpp
2018-07-30 15:04:04 +02:00

13 lines
233 B
C++

#include "library_item.h"
LibraryItem &LibraryItem::operator=(const LibraryItem &other)
{
this->name = other.name;
this->path = other.path;
this->parentId = other.parentId;
this->id = other.id;
return *this;
}