text.hh (5886:12431dc9a30a) text.hh (6126:5f32f9e3c65a)
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:
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
52 bool descriptions;
53
54 public:
55 Text();
56 Text(std::ostream &stream);
57 Text(const std::string &file);
58 ~Text();
59

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

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