settings.h 242 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #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