YAPOG  0.0.1
Yet Another Pokemon Online Game
IOStream.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_IOSTREAM_HPP
2 # define YAPOG_IOSTREAM_HPP
3 
4 # include <iostream>
5 # include <fstream>
6 
7 namespace yap
8 {
9  typedef std::istream IStream;
10  typedef std::ostream OStream;
11 
12  typedef std::ifstream IFStream;
13  typedef std::ofstream OFStream;
14 } // namespace yap
15 
16 #endif // YAPOG_IOSTREAM_HPP