2024-12-18 16:26:30 +00:00
|
|
|
#ifndef TRANSLATOR_H
|
|
|
|
#define TRANSLATOR_H
|
|
|
|
#include "translator.h"
|
|
|
|
|
|
|
|
namespace translation {
|
2024-12-20 13:20:26 +00:00
|
|
|
std::string translateFromAstral(const std::string& input);
|
|
|
|
std::string translateToAstral(const std::string& input);
|
2024-12-18 16:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //TRANSLATOR_H
|