Files
fastweb/src/core/interface.hpp
2024-06-08 19:10:22 +08:00

20 lines
283 B
C++

#pragma once
#include "base/error.h"
namespace fastweb
{
class app;
class Interface :public ylib::error_base
{
public:
Interface(fastweb::app* ptr)
{
this->m_ptr = ptr;
}
fastweb::app* app() { return this->m_ptr; }
public:
fastweb::app* m_ptr = nullptr;
};
}