#include <stdio.h>
#include <string.h>
Include dependency graph for cmt_string.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | cmt_string |
Functions | |
ostream & | operator<< (ostream &o, const cmt_string &s) |
cmt_string | operator+ (const char *text, const cmt_string &s) |
cmt_string | operator+ (char c, const cmt_string &s) |
|
Definition at line 719 of file cmt_string.cxx.
00720 { 00721 cmt_string result = c; 00722 result += s; 00723 return (result); 00724 } |
|
Definition at line 712 of file cmt_string.cxx.
00713 { 00714 cmt_string result = text; 00715 result += s; 00716 return (result); 00717 } |
|
Definition at line 706 of file cmt_string.cxx.
00707 { 00708 o << (const char*) s; 00709 return (o); 00710 } |