Changed some includes for the new dir structure

This commit is contained in:
mac 2000-03-22 16:49:35 +00:00
commit 6c79787c43
16 changed files with 348 additions and 26 deletions

View file

@ -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";