PTLib  Version 2.10.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
conchan.h
Go to the documentation of this file.
1 /*
2  * conchan.h
3  *
4  * Console I/O channel class.
5  *
6  * Portable Windows Library
7  *
8  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
9  *
10  * The contents of this file are subject to the Mozilla Public License
11  * Version 1.0 (the "License"); you may not use this file except in
12  * compliance with the License. You may obtain a copy of the License at
13  * http://www.mozilla.org/MPL/
14  *
15  * Software distributed under the License is distributed on an "AS IS"
16  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
17  * the License for the specific language governing rights and limitations
18  * under the License.
19  *
20  * The Original Code is Portable Windows Library.
21  *
22  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
23  *
24  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
25  * All Rights Reserved.
26  *
27  * Contributor(s): ______________________________________.
28  *
29  * $Revision: 24160 $
30  * $Author: rjongbloed $
31  * $Date: 2010-03-29 02:09:03 -0500 (Mon, 29 Mar 2010) $
32  */
33 
34 #ifndef PTLIB_CONSOLECHANNEL_H
35 #define PTLIB_CONSOLECHANNEL_H
36 
37 #ifdef P_USE_PRAGMA
38 #pragma interface
39 #endif
40 
42 // Console Channel
43 
46 class PConsoleChannel : public PChannel
47 {
48  PCLASSINFO(PConsoleChannel, PChannel);
49 
50  public:
51  enum ConsoleType {
55  };
56 
59 
61 
64  ConsoleType type
65  );
67 
77  virtual bool SetLocalEcho(
78  bool localEcho
79  );
81 
88  virtual PBoolean Open(
89  ConsoleType type
90  );
92 
93 
94 // Include platform dependent part of class
95 #ifdef _WIN32
96 #include "msos/ptlib/conchan.h"
97 #else
98 #include "unix/ptlib/conchan.h"
99 #endif
100 
101 };
102 
103 
104 #endif // PTLIB_CONSOLECHANNEL_H
105 
106 
107 // End Of File ///////////////////////////////////////////////////////////////