mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 06:13:41 +00:00
8 lines
153 B
C++
8 lines
153 B
C++
#pragma once
|
|
|
|
class DescFormatter {
|
|
public:
|
|
virtual ~DescFormatter() = default;
|
|
virtual std::string format(const std::string& i18nValue) = 0;
|
|
};
|