X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSocket%2FProtocols%2FUN%2FUNSocketProtocol.hh;h=2fc6c8b531b5daca4449c0a7488da39513fc1125;hb=7661548b20e6c7627f54bff87e0758396fd523ef;hp=64e797dce69ed192e243262cd348c023fb06e9d6;hpb=0fb5ed1adf2f67dbf47fdfed3f3c8be989cf3618;p=senf.git diff --git a/senf/Socket/Protocols/UN/UNSocketProtocol.hh b/senf/Socket/Protocols/UN/UNSocketProtocol.hh index 64e797d..2fc6c8b 100644 --- a/senf/Socket/Protocols/UN/UNSocketProtocol.hh +++ b/senf/Socket/Protocols/UN/UNSocketProtocol.hh @@ -30,16 +30,16 @@ #include //#include "UNSocketProtocol.mpp" -///////////////////////////////hh.p//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// namespace senf { /// \addtogroup protocol_facets_group - /// @{ + //\{ /** \brief Protocol facet providing Unix Domain Addressing related API - This protocol facet introduces all the socket api protocol members which are related to Unix + This protocol facet introduces all the socket api protocol members which are related to Unix Domain addressing. */ class UNSocketProtocol @@ -49,7 +49,7 @@ namespace senf { virtual void close(); ///< Close socket /**< This override will automatically \c shutdown() the socket whenever it is closed. - \throws senf::SystemException */ // + \throws senf::SystemException */ // virtual void terminate() const; ///< Forcibly close socket /**< This override will automatically \c shutdown() the socket whenever it is called. Additionally it will @@ -57,21 +57,21 @@ namespace senf { block. Like the overriden method, this member will ignore failures and will never throw. It therefore safe to be called from a destructor. */ ///\name Abstract Interface Implementation - ///@{ + //\{ unsigned available() const; bool eof() const; - + private: - void check_and_unlink() const; - + void check_and_unlink() const; + std::string path_; }; - ///@} + //\} } -///////////////////////////////hh.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// //#include "UNSocketProtocol.cci" //#include "UNSocketProtocol.ct" //#include "UNSocketProtocol.cti"