mirror of
https://github.com/Artikash/Textractor.git
synced 2025-01-12 02:19:29 +08:00
15 lines
242 B
C
15 lines
242 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
|
||
|
|
||
|
Settings() : splittingInterval(200) {}
|
||
|
|
||
|
};
|
||
|
|
||
|
// EOF
|