This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/std/iostream.hpp
2013-08-05 01:00:01 +03:00

13 lines
162 B
C++

#pragma once
#include <iostream>
using std::cin;
using std::cout;
using std::cerr;
using std::endl;
using std::flush;
using std::istream;
using std::ostream;