anthem/include/anthem/Translation.h

24 lines
578 B
C++

#ifndef __ANTHEM__TRANSLATION_H
#define __ANTHEM__TRANSLATION_H
#include <string>
#include <vector>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Translation
//
////////////////////////////////////////////////////////////////////////////////////////////////////
void translate(const std::vector<std::string> &fileNames);
void translate(const char *fileName, std::istream &stream);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif