#endif USE_IOSTREAM
#endif WIN32
Should be:
#endif // USE_IOSTREAM
#endif // WIN32
endif doesn’t take any arguments. Such comments are placed only for better readability.
You also missed closing #endif // _OM_NO_IOSTREAM at the end.
#endif USE_IOSTREAM
#endif WIN32
Should be:
#endif // USE_IOSTREAM
#endif // WIN32
endif doesn’t take any arguments. Such comments are placed only for better readability.
You also missed closing #endif // _OM_NO_IOSTREAM at the end.