mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
22 lines
308 B
C++
22 lines
308 B
C++
|
//--STRIP
|
||
|
#include "resource.h"
|
||
|
//--STRIP
|
||
|
|
||
|
void Resource::emit_changed() {
|
||
|
changed.emit(this);
|
||
|
}
|
||
|
|
||
|
Error Resource::load(const String &path) {
|
||
|
return ERR_UNAVAILABLE;
|
||
|
}
|
||
|
Error Resource::save(const String &path) {
|
||
|
return ERR_UNAVAILABLE;
|
||
|
}
|
||
|
|
||
|
Resource::Resource() :
|
||
|
Reference() {
|
||
|
}
|
||
|
|
||
|
Resource::~Resource() {
|
||
|
}
|