mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
13 lines
233 B
C++
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;
|
|
}
|