debstrm.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * debstrm.h
  3.  *
  4.  * Debug output stream for Windows.
  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.  * $Log: debstrm.h,v $
  30.  * Revision 1.6  1998/09/24 03:39:55  robertj
  31.  * Added open software license.
  32.  *
  33.  * Revision 1.5  1997/07/08 12:57:50  robertj
  34.  * DLL support
  35.  *
  36.  * Revision 1.4  1996/11/04 03:34:24  robertj
  37.  * Fixed missing #define for multiple inclusion of file.
  38.  *
  39.  * Revision 1.3  1996/08/17 10:00:40  robertj
  40.  * Changes for Windows DLL support.
  41.  *
  42.  * Revision 1.2  1994/12/21 11:57:19  robertj
  43.  * Fixed debugging stream.
  44.  *
  45.  * Revision 1.1  1994/08/21  23:43:02  robertj
  46.  * Initial revision
  47.  *
  48.  * Revision 1.1  1994/07/27  05:58:07  robertj
  49.  * Initial revision
  50.  *
  51.  */
  52. #ifndef _PDEBUGSTREAM
  53. #define _PDEBUGSTREAM
  54. ///////////////////////////////////////////////////////////////////////////////
  55. // PDebugStream for MS-Windows
  56. class PDebugStream : public ostream {
  57.   public:
  58.     PDebugStream();
  59.   private:
  60.     class Buffer : public streambuf {
  61.       public:
  62.         Buffer();
  63.         virtual int overflow(int=EOF);
  64.         virtual int underflow();
  65.         virtual int sync();
  66.         char buffer[250];
  67.     } buffer;
  68. };
  69. #endif