#ifndef GLOBALSTATE_H #define GLOBALSTATE_H #include #include using namespace std; class GlobalState { public: GlobalState(); bool bInPara; bool bInTitle; bool bInList; bool bInTable; bool bErrorFiltering; bool bPrintPara; bool bPrintTitle; bool bPrintList; bool bPrintTable; bool bPrintOnlyCorr; bool bPrintTypos; bool bPrintSpeller; bool bPrintFilename; bool bAddID; map errorFilters; string sLang; }; #endif