documenting copyright correctly
[senf.git] / Socket / Protocols / UN / UNAddress.cc
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum NETwork research (NET)
4 //     David Wagner <david.wagner@fokus.fraunhofer.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief UNAddress non-inline non-template implementation */
23
24 #include "UNAddress.hh"
25 //#include "UNAddress.ih"
26
27 // Custom includes
28
29 //#include "UNAddress.mpp"
30 #define prefix_
31 ///////////////////////////////cc.p////////////////////////////////////////
32
33 prefix_ senf::UNAddress::UNAddress()
34     //:path("")
35 {
36     path = boost::filesystem::path("");
37 }
38
39 prefix_ senf::UNAddress::UNAddress(boost::filesystem::path p)
40 {
41     path = p; 
42 }
43
44
45 prefix_ senf::UNAddress::UNAddress senf::UNAddress::fromString(std::string &  s)
46 {
47     return senf::UNAddress::UNAddress(boost::filesystem::path(s));
48 }
49
50 prefix_ senf::UNAddress::UNAddress senf::UNAddress::fromPath(boost::filesystem::path & p){
51     return senf::UNAddress::UNAddress(p);
52 }
53
54 prefix_  std::string senf::UNAddress::pathString()
55     const
56 {
57     return  path.string();
58 }
59
60 prefix_ senf::UNAddress::UNAddress senf::UNAddress::clone()
61 {
62     senf::UNAddress::UNAddress local_addr = senf::UNAddress::UNAddress(pathString());
63     return  local_addr;
64 }
65
66 prefix_ std::ostream & senf::operator<<(std::ostream & os, UNAddress const & addr)
67 {
68     os << addr.pathString();
69     return os;
70 }
71
72 ///////////////////////////////cc.e////////////////////////////////////////
73 #undef prefix_
74 //#include "UNAddress.mpp"
75
76 \f
77 // Local Variables:
78 // mode: c++
79 // fill-column: 100
80 // comment-column: 40
81 // c-file-style: "senf"
82 // indent-tabs-mode: nil
83 // ispell-local-dictionary: "american"
84 // compile-command: "scons -u test"
85 // End: