11 lines
240 B
C++
11 lines
240 B
C++
#ifndef TRANSLATOR_H
|
|
#define TRANSLATOR_H
|
|
#include "translator.h"
|
|
|
|
namespace translation {
|
|
std::string translateFromAstral(const std::string& input);
|
|
std::string translateToAstral(const std::string& input);
|
|
}
|
|
|
|
#endif //TRANSLATOR_H
|