Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

cmt_string.cxx File Reference

#include <stdio.h>
#include <stdlib.h>
#include "cmt_std.h"
#include "cmt_string.h"

Include dependency graph for cmt_string.cxx:

Include dependency graph

Go to the source code of this file.

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)


Function Documentation

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 }

cmt_string operator+ const char *  text,
const cmt_string s
 

Definition at line 712 of file cmt_string.cxx.

00713 {
00714   cmt_string result = text;
00715   result += s;
00716   return (result);
00717 }

ostream& operator<< ostream &  o,
const cmt_string s
 

Definition at line 706 of file cmt_string.cxx.

00707 {
00708   o << (const char*) s;
00709   return (o);
00710 }


Generated on Mon May 2 10:25:20 2005 for CMT by doxygen 1.3.5