Updater class.
authorBjoern Sikora <bjoern.sikora@intra2net.com>
Fri, 24 Jul 2009 15:14:54 +0000 (17:14 +0200)
committerBjoern Sikora <bjoern.sikora@intra2net.com>
Fri, 24 Jul 2009 15:14:54 +0000 (17:14 +0200)
src/updater.cpp

index c092743..97b84a5 100644 (file)
 
 #include <boost/foreach.hpp>
 
+
 Updater::Updater()
 {
 }
 
+
 Updater::Updater(Config* conf)
 {
     this->conf = conf;
 }
 
+
 Updater::~Updater()
 {
 }
 
+
 void Updater::set_config(Config* conf)
 {
     this->conf = conf;
 }
 
+
 Config* Updater::get_config()
 {
     return this->conf;
 }
 
+
 void Updater::update_services()
 {
     list<Service*> services = this->conf->get_services();