10 lines
170 B
C
10 lines
170 B
C
|
#ifndef TRANSLATOR_H
|
||
|
#define TRANSLATOR_H
|
||
|
#include "translator.h"
|
||
|
|
||
|
namespace translation {
|
||
|
std::string translateInput(const std::string& i);
|
||
|
}
|
||
|
|
||
|
#endif //TRANSLATOR_H
|