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