00001 00008 /***************************************************************************** 00009 ** Ifdefs 00010 *****************************************************************************/ 00011 00012 #ifndef ECL_STREAMS_SHARED_FILE_STREAMS_HPP_ 00013 #define ECL_STREAMS_SHARED_FILE_STREAMS_HPP_ 00014 00015 /***************************************************************************** 00016 ** Includes 00017 *****************************************************************************/ 00018 00019 #include <string> 00020 #include <ecl/config/macros.hpp> 00021 #include <ecl/exceptions/standard_exception.hpp> 00022 #include <ecl/devices/shared_file.hpp> 00023 #include "text_stream.hpp" 00024 00025 /***************************************************************************** 00026 ** Namespaces 00027 *****************************************************************************/ 00028 00029 namespace ecl { 00030 00031 /***************************************************************************** 00032 ** Interfaces [SharedFileStream] 00033 *****************************************************************************/ 00042 class ECL_PUBLIC SharedFileStream : public TextStream<SharedFile> { 00043 public: 00050 SharedFileStream() {}; 00062 SharedFileStream(const std::string &file_name, const WriteMode &mode = New) ecl_throw_decl(StandardException) { 00063 ecl_try { 00064 if ( !this->device().open(file_name, mode) ) { 00065 error = this->device().error(); 00066 } 00067 } ecl_catch(StandardException &e) { 00068 ecl_throw(StandardException(LOC,e)); 00069 } 00070 } 00071 virtual ~SharedFileStream() {}; 00072 }; 00073 00074 } // namespace ecl 00075 00076 00077 #endif /* ECL_STREAMS_SHARED_FILE_STREAMS_HPP_ */