/usr/include/ga/std_stream.h is in libga-dev 1:2.4.7-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | // $Header$
// Copyright (c) 2005 Matthew Wall, all rights reserved
// ----------------------------------------------------------------------------
#ifndef _ga_std_stream_h_
#define _ga_std_stream_h_
#include <ga/gaconfig.h>
#if defined(GALIB_USE_STREAMS)
#if defined(GALIB_USE_ANSI_HEADERS)
#include <iostream>
#include <fstream>
#else
#include <iostream.h>
#include <fstream.h>
#endif
#if defined(GALIB_USE_STD_NAMESPACE)
#define STD_ISTREAM std::istream
#define STD_OSTREAM std::ostream
#define STD_IFSTREAM std::ifstream
#define STD_OFSTREAM std::ofstream
#define STD_IOS_IN std::ios::in
#define STD_IOS_OUT std::ios::out
#define STD_IOS_TRUNC std::ios::trunc
#define STD_IOS_APP std::ios::app
#define STD_IOS_BADBIT std::ios::badbit
#define STD_ENDL std::endl
#define STD_COUT std::cout
#define STD_CERR std::cerr
#else
#define STD_ISTREAM istream
#define STD_OSTREAM ostream
#define STD_IFSTREAM ifstream
#define STD_OFSTREAM ofstream
#define STD_IOS_IN ios::in
#define STD_IOS_OUT ios::out
#define STD_IOS_TRUNC ios::trunc
#define STD_IOS_APP ios::app
#define STD_IOS_BADBIT ios::badbit
#define STD_ENDL endl
#define STD_COUT cout
#define STD_CERR cerr
#endif
#endif
#endif
|