9 lines
187 B
C++
9 lines
187 B
C++
#include "extension.h"
|
|
|
|
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
|
{
|
|
if (sentenceInfo["text number"] == 0) return false;
|
|
sentence += L"\n";
|
|
return true;
|
|
}
|