Files
pip/utils/translator/parser.h
peri4 57f8c1313e first release of translation facility
* runtime - loading and translating
 * design-time - works with *.ts file (pip_tr utility)
 * compile-time - CMake macro for compile *.ts
2024-11-05 13:49:00 +03:00

10 lines
246 B
C

#ifndef PITR_PARSER_H
#define PITR_PARSER_H
#include "ts_file.h"
PIString fromCode(const PIString & in);
void gatherStrings(TSFile::Content & content, const PIString & file, const PIString & file_loc, int & count_all, int & count_new);
#endif