Files
fastweb/module/hello/hello.h
2024-06-01 19:18:14 +08:00

9 lines
104 B
C++

#pragma once
#include <string>
class hello
{
public:
hello();
~hello();
static std::string name();
};