-
Notifications
You must be signed in to change notification settings - Fork 0
/
Console.h
42 lines (35 loc) · 865 Bytes
/
Console.h
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
// -*- C++ -*-
//
//--------------------------------------------------------------------------------
//
// Michael A.G. Aivazis
// California Institute of Technology
// (C) 1998-2005 All Rights Reserved
//
// <LicenseText>
//
//--------------------------------------------------------------------------------
//
#if !defined(journal_Console_h)
#define journal_Console_h
// forward declarations
namespace journal {
class Console;
class StreamDevice;
}
//
class journal::Console : public journal::StreamDevice
{
// meta-methods
public:
Console();
virtual ~Console();
// disable these
private:
Console(const Console &);
const Console & operator=(const Console &);
};
#endif
// version
// $Id: Console.h,v 1.1.1.1 2006-11-27 00:09:37 aivazis Exp $
// End of file