mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
17 lines
398 B
C++
17 lines
398 B
C++
#ifndef ABOUT_HPP
|
|
#define ABOUT_HPP
|
|
|
|
#include <string>
|
|
|
|
class About {
|
|
public:
|
|
static std::string getName() { return "文本转换器"; }
|
|
static std::string getVersion() { return "1.0.0"; }
|
|
static std::string getAuthor() { return "zsyg"; }
|
|
static std::string getDescription() {
|
|
return "一个简单的文本转换工具,支持文本转换";
|
|
}
|
|
};
|
|
|
|
#endif // ABOUT_HPP
|