anthem/include/anthem/Translation.h

26 lines
643 B
C
Raw Permalink Normal View History

2016-11-22 03:15:52 +01:00
#ifndef __ANTHEM__TRANSLATION_H
#define __ANTHEM__TRANSLATION_H
#include <string>
#include <vector>
#include <anthem/Context.h>
2016-11-22 03:15:52 +01:00
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Translation
//
////////////////////////////////////////////////////////////////////////////////////////////////////
void translate(const std::vector<std::string> &fileNames, Context &context);
void translate(const char *fileName, std::istream &stream, Context &context);
2016-11-22 03:15:52 +01:00
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif