1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 32 unchanged lines hidden (view full) ---

41class Text : public Output
42{
43 protected:
44 bool mystream;
45 std::ostream *stream;
46
47 protected:
48 bool noOutput(const StatData &data);
49 void binout();
49
50 public:
51 bool compat;
52 bool descriptions;
53
54 public:
55 Text();
56 Text(std::ostream &stream);

--- 22 unchanged lines hidden ---