Changeset 43 in pacpusframework for trunk/src/PacpusLib/ComponentFactoryBase.cpp
- Timestamp:
- Jan 8, 2013, 9:53:01 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/ComponentFactoryBase.cpp
r31 r43 1 1 /** 2 2 * 3 * Distributed under the UTC Heudiascy Pacpus License, Version 1.0. 4 * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved. 5 * 6 * See the LICENSE file for more information or a copy at: 7 * http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt 8 * 3 * This file is part of the PACPUS framework distributed under the 4 * CECILL-C License, Version 1.0. 5 * 6 * @author Gerald Dherbomez 7 * @date December, 2012 8 * @version $Id$ 9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved. 10 * 9 11 */ 10 12 … … 22 24 23 25 ComponentFactoryBase::ComponentFactoryBase() 26 : mgr_(NULL) 24 27 { 25 28 LOG_TRACE("constructor"); 26 27 29 // get the adress of the ComponentManager instance 28 30 mgr_ = ComponentManager::getInstance(); … … 34 36 } 35 37 36 void ComponentFactoryBase::addFactory(ComponentFactoryBase * addr, const QString& type)38 void ComponentFactoryBase::addFactory(ComponentFactoryBase* addr, const QString& type) 37 39 { 38 40 LOG_DEBUG("addFactory(type="<< type << ")"); … … 48 50 } 49 51 50 void ComponentFactoryBase::addComponent(const QString 52 void ComponentFactoryBase::addComponent(const QString& name) 51 53 { 52 54 LOG_DEBUG("addComponent(" << name << ")");
Note:
See TracChangeset
for help on using the changeset viewer.