Removed the newline from the messages sent
[simple_comm.git] / src / addr_local.h
blob9f43fc4131e09c1dcb2049faec7d4a8ec9604f9b
1 /*******************************************************************************
2 ********************************************************************************
4 Copyright (c) 2008 Ahmed S. Badran
6 Licensed under the FreeBSD License (see LICENSE)
8 Filename: addr_local.h
9 Description: Localhost address.
10 Created: 12/26/2008 04:02:54 PM PST
11 Author: Ahmed S. Badran (Ahmed B.), ahmed.badran@gmail.com
13 ********************************************************************************
14 *******************************************************************************/
15 #ifndef ADDR_LOCAL_INC
16 #define ADDR_LOCAL_INC
17 #include "addr_if.h"
19 namespace simple_comm
22 class addr_local: public addr_if
24 public:
25 addr_local();
26 const std::string get() const;
27 addr_if* clone() const;
28 private:
29 const std::string name;
33 #endif // ----- #ifndef ADDR_LOCAL_INC -----