Add documentation on private data member naming convention
[senf.git] / Socket / Protocols / UN / UNAddress.hh
index e5cb5f2..1dfdeea 100644 (file)
@@ -1,6 +1,7 @@
-// $Id$
-//
 // Copyright (C) 2007 
+// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
+// Kompetenzzentrum NETwork research (NET)
+//     David Wagner <david.wagner@fokus.fraunhofer.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
@@ -26,8 +27,7 @@
 // Custom includes
 #include <string>
 #include <boost/operators.hpp>
-#include <boost/filesystem/path.hpp>
-#include "../../../Utils/SafeBool.hh"
+#include "../../../Utils/safe_bool.hh"
 
 //#include "UNAddress.mpp"
 ///////////////////////////////hh.p////////////////////////////////////////
@@ -40,14 +40,12 @@ namespace senf {
         \ingroup addr_group
       */
     class UNAddress 
-        : public boost::filesystem::path,
-          public ComparableSafeBool<UNAddress>
+        : public comparable_safe_bool<UNAddress>
     {   
     public: 
         UNAddress(); ///< Construct an empty address
-        explicit UNAddress(boost::filesystem::path);///< Construct an address constant from given path
+        explicit UNAddress(std::string);///< Construct an address constant from given path
         static UNAddress fromString(std::string & s); ///< Convert string to address by interpreting the string as path
-        static UNAddress fromPath(boost::filesystem::path & p);///< Convert path to address 
         UNAddress clone(); ///< Clone object 
         std::string pathString() const; ///< Return the path of the address as string
 
@@ -55,7 +53,7 @@ namespace senf {
         struct AddressException : public std::exception {}; 
 
     private:
-        boost::filesystem::path path;
+        std::string path;
     };
 
 std::ostream & operator<<(std::ostream & os, UNAddress const & addr);