Initial commit on project bpdyndnsd.
[bpdyndnsd] / src / dhs.cpp
1 //
2 // C++ Implementation: dhs
3 //
4 // Description: 
5 //
6 //
7 // Author: Bjoern Sikora <bjoern.sikora@intra2net.com>, (C) 2009
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 #include "dhs.h"
13
14 DHS::DHS(string hostname, string login, string password)
15 {
16     this->hostname = hostname;
17     this->login = login;
18     this->password = password;
19 }
20
21 DHS::~DHS()
22 {
23 }
24
25 void DHS::update(string)
26 {
27     cout << "Running Update for Service DHS" << endl;
28     cout << "Hostname: " << this->hostname << endl;
29     cout << "Login: " << this->login << endl;
30     cout << "Password: " << this->password << endl;
31 }