26 lines
643 B
C++
26 lines
643 B
C++
#ifndef __ANTHEM__TRANSLATION_H
|
|
#define __ANTHEM__TRANSLATION_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <anthem/Context.h>
|
|
|
|
namespace anthem
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Translation
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void translate(const std::vector<std::string> &fileNames, Context &context);
|
|
void translate(const char *fileName, std::istream &stream, Context &context);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
}
|
|
|
|
#endif
|