File: winconsole.h

package info (click to toggle)
3depict 0.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 16,908 kB
  • sloc: cpp: 66,548; sh: 6,051; xml: 1,576; python: 326; makefile: 180; ansic: 173
file content (46 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download | duplicates (5)
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
/*
 * 	winconsole.h - Windows console debugging header
 *	Copyright (C) 2010, William W.

 *	This program is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation, either version 3 of the License, or
 *	(at your option) any later version.

 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public License for more details.

 *	You should have received a copy of the GNU General Public License
 *	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/


// winconsole.h
#ifndef __CONSOLE_H__
#define __CONSOLE_H__

#include <fstream>

#if defined(__WIN32) || defined(__WIN64)
class winconsole
{
private:
  std::ofstream m_out;
  std::ofstream m_err;
  std::ifstream m_in;

  std::streambuf* m_old_cout;
  std::streambuf* m_old_cerr;
  std::streambuf* m_old_cin;

public:
  winconsole();
  ~winconsole();

  void hide();
  void show();
};
#endif
#endif