Changeset 36 in pacpusframework for trunk


Ignore:
Timestamp:
01/08/13 19:22:25 (11 years ago)
Author:
DHERBOMEZ Gérald
Message:
  • modif de chemins d'include non trouvés sur ma machine
  • modif entetes de fichiers, utiliser ce template :

/

*

  • This file is part of the PACPUS framework distributed under the
  • CECILL-C License, Version 1.0. *
  • @author Prenom Nom <Mail>
  • @date Month, Year
  • @version $Id$
  • @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
  • @brief Brief description of file... *
  • Detailed description of file...
  • */
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/PacpusTools/AsyncWorkerBase.h

    r32 r36  
    11/**
    22 *
    3  * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
    4  * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
     3 * This file is part of the PACPUS framework distributed under the
     4 * CECILL-C License, Version 1.0.
     5 *
     6 * @author  Samuel Gosselin
     7 * @date    December, 2012
     8 * @version $Id$
     9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved.
     10 * @brief  Async worker base class
    511 *
    6  * See the LICENSE file for more information or a copy at:
    7  *   http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
    8  *
     12 * Detailed description of file...
     13 *
    914 */
     15
    1016 
    1117#ifndef DEF_PACPUS_ASYNC_WORKER_BASE_H
  • trunk/include/Pacpus/PacpusTools/PeriodicWorker.h

    r31 r36  
    11/**
    22 *
    3  * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
    4  * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
     3 * This file is part of the PACPUS framework distributed under the
     4 * CECILL-C License, Version 1.0.
     5 *
     6 * @author  Samuel Gosselin
     7 * @date    December, 2012
     8 * @version $Id$
     9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved.
     10 * @brief  Periodic worker base class
    511 *
    6  * See the LICENSE file for more information or a copy at:
    7  *   http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
    8  *
     12 * Detailed description of file...
     13 *
    914 */
    1015
     
    1318
    1419// Includes, pacpus.
    15 #include <PacpusTools/AsyncWorkerBase.h>
     20#include <Pacpus/PacpusTools/AsyncWorkerBase.h>
    1621
    1722class QTimer;
  • trunk/src/FileLib/src/DbiteFile.cpp

    r31 r36  
    11/**
    22 *
    3  * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
    4  * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
     3 * This file is part of the PACPUS framework distributed under the
     4 * CECILL-C License, Version 1.0.
     5 *
     6 * @author  Marek Kurdej
     7 * @date    June, 2012
     8 * @version $Id$
     9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved.
     10 * @brief  Periodic worker base class
    511 *
    6  * See the LICENSE file for more information or a copy at:
    7  *   http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
    8  *
     12 * Detailed description of file...
     13 *
    914 */
    1015
  • trunk/src/PacpusTools/src/AsyncWorkerBase.cpp

    r31 r36  
    11/**
    22 *
    3  * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
    4  * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
     3 * This file is part of the PACPUS framework distributed under the
     4 * CECILL-C License, Version 1.0.
     5 *
     6 * @author  Samuel Gosselin
     7 * @date    December, 2012
     8 * @version $Id$
     9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved.
     10 * @brief  Async worker base class
    511 *
    6  * See the LICENSE file for more information or a copy at:
    7  *   http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
    8  *
     12 * Detailed description of file...
     13 *
    914 */
    1015
     16
    1117// Includes, pacpus.
    12 #include <kernel/Log.h>
    13 #include <PacpusTools/AsyncWorkerBase.h>
     18#include <Pacpus/kernel/Log.h>
     19#include <Pacpus/PacpusTools/AsyncWorkerBase.h>
    1420
    1521// Includes, qt.
     
    1723
    1824using namespace pacpus;
    19 DECLARE_STATIC_LOGGER("pamu.core.workers");
     25DECLARE_STATIC_LOGGER("pacpus.core.workers");
    2026
    2127AsyncWorkerBase::AsyncWorkerBase()
  • trunk/src/PacpusTools/src/PeriodicWorker.cpp

    r31 r36  
    11/**
    22 *
    3  * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
    4  * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
     3 * This file is part of the PACPUS framework distributed under the
     4 * CECILL-C License, Version 1.0.
     5 *
     6 * @author  Samuel Gosselin
     7 * @date    December, 2012
     8 * @version $Id$
     9 * @copyright Copyright (c) UTC/CNRS Heudiasyc 2005 - 2013. All rights reserved.
     10 * @brief  Periodic worker base class
    511 *
    6  * See the LICENSE file for more information or a copy at:
    7  *   http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
    8  *
     12 * Detailed description of file...
     13 *
    914 */
    1015
     16
    1117// Includes, pacpus.
    12 #include <PacpusTools/PeriodicWorker.h>
     18#include <Pacpus/PacpusTools/PeriodicWorker.h>
    1319
    1420// Includes, qt.
Note: See TracChangeset for help on using the changeset viewer.