Differences From Artifact [206254c8d0]:
- Executable file mttroot/mtt/cc/include/Bracket.hh — part of check-in [9ef1e76549] at 2000-12-28 09:47:29 on branch origin/master — put under RCS (user: gawthrop@users.sourceforge.net, size: 4546) [annotate] [blame] [check-ins using] [more...]
To Artifact [d18f2fcc8a]:
- Executable file mttroot/mtt/cc/include/Bracket.hh — part of check-in [f80e872abe] at 2001-06-30 03:26:20 on branch origin/numerical-algebraic-solution — gcc-3.0 compatibility. (user: geraint@users.sourceforge.net, size: 4632) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + + + | /* $Id$ * $Log$ * Revision 1.1 2000/12/28 09:47:29 peterg * put under RCS * * Revision 1.1 2000/10/31 04:29:11 geraint * Initial revision * */ #include <iostream> #include <string> using namespace std; class Bracket { public: friend ostream &operator<< (ostream &str, Bracket *b); friend string &operator<< (string &str, Bracket *b); friend string &operator+= (string &str, Bracket *b); |