Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.daimi.au.dk/svn/tpie/trunk@3 669acd26-ddd2-4139-9e68-486997aa639d
  • Loading branch information
Darren Vengroff committed May 12, 1994
1 parent 15f23e0 commit cad378d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tpie/include/logstream.h
@@ -0,0 +1,26 @@
// Copyright (c) 1994 Darren Erik Vengroff
//
// File: tp_log.h
// Author: Darren Erik Vengroff <dev@cs.duke.edu>
// Created: 5/12/94
//
// $Id: logstream.h,v 1.1 1994-05-12 14:05:23 dev Exp $
//
#ifndef _TP_LOG_H
#define _TP_LOG_H

#include <iostream.h>

// A log is like a regular output stream, but it also supports messages
// at different priorities. If a message's priority is at least as high
// as the current priority threshold, then it appears in the log.
// Otherwise, it does not.

class tp_log : ostream {
private:


}


#endif // _TP_LOG_H

0 comments on commit cad378d

Please sign in to comment.