Changeset 43 in pacpusframework for trunk/src/PacpusLib


Ignore:
Timestamp:
01/08/13 21:53:01 (11 years ago)
Author:
sgosseli
Message:

Minor: add some documentation, update the license header, update the coding style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/PacpusLib/ComponentFactoryBase.cpp

    r31 r43  
    11/**
    22 *
    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 *
    911 */
    1012
     
    2224
    2325ComponentFactoryBase::ComponentFactoryBase()
     26    : mgr_(NULL)
    2427{
    2528    LOG_TRACE("constructor");
    26 
    2729    // get the adress of the ComponentManager instance
    2830    mgr_ = ComponentManager::getInstance();
     
    3436}
    3537
    36 void ComponentFactoryBase::addFactory(ComponentFactoryBase * addr, const QString & type)
     38void ComponentFactoryBase::addFactory(ComponentFactoryBase* addr, const QString& type)
    3739{
    3840    LOG_DEBUG("addFactory(type="<< type << ")");
     
    4850}
    4951
    50 void ComponentFactoryBase::addComponent(const QString & name)
     52void ComponentFactoryBase::addComponent(const QString& name)
    5153{
    5254    LOG_DEBUG("addComponent(" << name << ")");
Note: See TracChangeset for help on using the changeset viewer.