tasmet/src/tasmet_io.h

28 lines
646 B
C
Raw Normal View History

// tasmet_io.h
//
// Author: J.A. de Jong
//
// Description:
//
//////////////////////////////////////////////////////////////////////
#pragma once
#ifndef TASMET_IO_H
#define TASMET_IO_H
#include <iostream>
#include <iomanip>
2017-01-08 19:55:03 +00:00
#include <sstream>
//Spoiling global namespace with often used functions and variables
using std::cout; /* Output to stdout */
using std::endl;
using std::setprecision;
using std::setiosflags;
using std::cin; /* Input from stdin */
using std::ostream;
using std::cerr;
using std::ios;
2017-01-08 19:55:03 +00:00
using std::stringstream;
#endif // TASMET_IO_H
//////////////////////////////////////////////////////////////////////