comparison src/ov-cell.h @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents d14c483b3c12
children ea583bc68959
comparison
equal deleted inserted replaced
3522:bd422cf62f0c 3523:b80bbb43a1a9
72 72
73 bool is_defined (void) const { return true; } 73 bool is_defined (void) const { return true; }
74 74
75 bool is_constant (void) const { return true; } 75 bool is_constant (void) const { return true; }
76 76
77 void print (ostream& os, bool pr_as_read_syntax = false) const; 77 void print (std::ostream& os, bool pr_as_read_syntax = false) const;
78 78
79 void print_raw (ostream& os, bool pr_as_read_syntax = false) const; 79 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
80 80
81 bool print_name_tag (ostream& os, const string& name) const; 81 bool print_name_tag (std::ostream& os, const std::string& name) const;
82 82
83 private: 83 private:
84 84
85 Cell cell_val; 85 Cell cell_val;
86 86