90613f5039
update to ITHVNR 3.5640.1 and translation
18 lines
291 B
C
18 lines
291 B
C
#pragma once
|
|
|
|
// settings.h
|
|
// 8/24/2013 jichi
|
|
|
|
struct Settings {
|
|
//bool debug; // whether output debug messages using pipes
|
|
int splittingInterval;// time to split text into sentences
|
|
bool clipboardFlag;
|
|
|
|
Settings() : splittingInterval(200),
|
|
clipboardFlag(false)
|
|
{}
|
|
|
|
};
|
|
|
|
// EOF
|