Changed some includes for the new dir structure
This commit is contained in:
parent
340edc2420
commit
6c79787c43
16 changed files with 348 additions and 26 deletions
|
|
@ -1,3 +1,7 @@
|
|||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <fstream>
|
||||
#include <iomanip>
|
||||
|
|
@ -6,6 +10,11 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
void eoWarning(std::string str)
|
||||
{
|
||||
cout << str << '\n';
|
||||
}
|
||||
|
||||
std::ostream& printSectionHeader(std::ostream& os, std::string section)
|
||||
{
|
||||
os << '\n' << setw(10) << "###### " << setw(20) << section << setw(10) << " ######\n";
|
||||
|
|
|
|||
Reference in a new issue