8 lines
149 B
C++
8 lines
149 B
C++
|
#include "object/endpoint.h"
|
||
|
|
||
|
#include "scheduler/scheduler.h"
|
||
|
|
||
|
glcr::RefPtr<Endpoint> Endpoint::Create() {
|
||
|
return glcr::AdoptPtr(new Endpoint);
|
||
|
}
|