Deleted Added
sdiff udiff text old ( 5886:12431dc9a30a ) new ( 6126:5f32f9e3c65a )
full compact
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;

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

44 protected:
45 bool mystream;
46 std::ostream *stream;
47
48 protected:
49 bool noOutput(const Info &info);
50
51 public:
52 bool compat;
53 bool descriptions;
54
55 public:
56 Text();
57 Text(std::ostream &stream);
58 Text(const std::string &file);
59 ~Text();
60

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

72 // Implement Output
73 virtual bool valid() const;
74 virtual void output();
75
76 // Implement Event Output
77 virtual void event(const std::string &event) {}
78};
79
80bool initText(const std::string &filename, bool desc=true, bool compat=true);
81
82/* namespace Stats */ }
83
84#endif // __BASE_STATS_TEXT_HH__