#include <string>
#include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
#include "zfstream.hxx"
#endif /* _FGSTREAM_HXX */
// $Log$
+// Revision 1.4 1998/10/16 00:50:56 curt
+// Remove leading _ from a couple defines.
+//
// Revision 1.3 1998/10/13 00:10:06 curt
// More portability changes to help with windoze compilation problems.
//
#include <stdlib.h>
#include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
// Default characters to remove.
extern const string whitespace;
#endif // STRUTILS_H
// $Log$
+// Revision 1.3 1998/10/16 00:50:57 curt
+// Remove leading _ from a couple defines.
+//
// Revision 1.2 1998/10/13 00:10:07 curt
// More portability changes to help with windoze compilation problems.
//
};
template<class T> class gzomanip {
- friend gzofstream &operator << _FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
+ friend gzofstream &operator << FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
public:
gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { }
private: