Fix several long standing irix compiler warnings.
// Possible types of ATC type that the radios may be tuned to.
// INVALID implies not tuned in to anything.
-typedef enum atc_type {
+enum atc_type {
INVALID,
ATIS,
GROUND,
class FGTextLayer : public FGInstrumentLayer
{
public:
- typedef enum ChunkType {
+ enum ChunkType {
TEXT,
TEXT_VALUE,
DOUBLE_VALUE
#include "logger.hxx"
-#include <fstream>
+#include STL_FSTREAM
+#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
SG_USING_STD(ofstream);
SG_USING_STD(endl);
+#endif
#include <string>
SG_USING_STD(string);
#include <simgear/misc/exception.hxx>
#include <simgear/misc/props.hxx>
+#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
#include <iostream>
SG_USING_STD(ostream);
+#endif
#include <vector>
SG_USING_STD(vector);
/****************************************************************************/
/* DEFINES */
/****************************************************************************/
-typedef enum SnowRainType
+enum SnowRainType
{
Rain,
Snow,