return *this;
}
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
std::ostream & operator<<
(
std::ostream & os,
#endif
{
if (file.ttFileOpFailed())
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
return os << "Error in filename mapping; status = "
<< file.getStatus() << std::endl;
#else
<< file.getStatus() << endl;
#endif
else
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
return os << file.data() << std::endl;
#else
return os << file.data() << endl;
};
#else
void TT_Exception (char *);
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
friend std::ostream & operator<< (std::ostream &, TTFile &);
#else
friend ostream & operator<< (ostream &, TTFile &);
#endif
#include <stdlib.h>
#include <string.h>
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
#include <iostream>
#else
#include <iostream.h>
}
}
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
std::ostream & operator<<
(
std::ostream & os,
#ifndef _CSTRING_H_
#define _CSTRING_H_
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
#include <iostream>
#else
#include <iostream.h>
int isNull() const;
void replace (const CString &, const CString &);
-#if defined(linux)
+#if defined(linux) || defined(CSRG_BASED)
friend std::ostream & operator<< (std::ostream &, const CString &);
#else
friend ostream & operator<< (ostream &, const CString &);