mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
15 lines
227 B
C++
15 lines
227 B
C++
#include "resource.h"
|
|
|
|
std::string Resource::to_json(rapidjson::Document *into) {
|
|
return "";
|
|
}
|
|
void Resource::from_json(const std::string &data) {
|
|
}
|
|
|
|
Resource::Resource() :
|
|
Reference() {
|
|
id = 0;
|
|
}
|
|
|
|
Resource::~Resource() {
|
|
} |