![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /****************************************************************************** 00002 * Glue * 00003 * __________________________________________________________________________ * 00004 * * 00005 * Copyright (C) 2005-2006 * 00006 * Lehrstuhl fuer Kommunikationsnetze (ComNets) * 00007 * Kopernikusstr. 16, D-52074 Aachen, Germany * 00008 * phone: ++49-241-80-27910 (phone), fax: ++49-241-80-22242 * 00009 * email: wns@comnets.rwth-aachen.de * 00010 * www: http://wns.comnets.rwth-aachen.de * 00011 ******************************************************************************/ 00012 00013 #include <GLUE/Glue.hpp> 00014 00015 #include <WNS/pyconfig/View.hpp> 00016 00017 using namespace glue; 00018 00019 STATIC_FACTORY_REGISTER_WITH_CREATOR( 00020 Glue, 00021 wns::module::Base, 00022 "Glue", 00023 wns::PyConfigViewCreator); 00024 00025 Glue::Glue(const wns::pyconfig::View& _pyConfigView) : 00026 wns::module::Module<Glue>(_pyConfigView) 00027 { 00028 } 00029 00030 Glue::~Glue() 00031 { 00032 } 00033 00034 void 00035 Glue::configure() 00036 { 00037 } // configure 00038 00039 00040 void 00041 Glue::startUp() 00042 { 00043 } // startUp 00044 00045 00046 void 00047 Glue::shutDown() 00048 { 00049 } // shutDown 00050 00051 00052
1.5.5