Changeset 79 in pacpusframework


Ignore:
Timestamp:
01/14/13 09:52:06 (11 years ago)
Author:
Marek Kurdej
Message:

Minor: reverted heading changes from revision 78.
Left: corrected return types.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/kernel/XmlComponentConfig.h

    r78 r79  
    1 /*********************************************************************
    2 //
    3 // created:    2006/01/30 - 10:58
    4 //
    5 // filename:   xmlcomponentconfig.h
    6 //
    7 // author:     Gerald Dherbomez
    8 //
    9 // purpose:    definit la structure XML des paramètres de configuration
    10 //             d'un composant
    11 *********************************************************************/
     1// %pacpus:license{
     2// This file is part of the PACPUS framework distributed under the
     3// CECILL-C License, Version 1.0.
     4// %pacpus:license}
     5/// @file
     6/// @author  Gerald Dherbomez <firstname.surname@utc.fr>
     7/// @date    January, 2006
     8/// @version $Id$
     9/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
     10/// @brief Brief description.
     11///
     12/// Purpose:    definit la structure XML des paramètres de configuration
     13///             d'un composant
    1214
    13 #ifndef XMLCOMPONENTCONFIG_H
    14 #define XMLCOMPONENTCONFIG_H
     15#ifndef DEF_PACPUS_XMLCOMPONENTCONFIG_H
     16#define DEF_PACPUS_XMLCOMPONENTCONFIG_H
    1517
    16 #include "pacpus.h"
     18#include <Pacpus/kernel/pacpus.h>
    1719
    1820#include <QDomElement>
     
    104106} // namespace pacpus
    105107
    106 #endif // XMLCOMPONENTCONFIG_H
     108#endif // DEF_PACPUS_XMLCOMPONENTCONFIG_H
  • trunk/src/PacpusLib/XmlComponentConfig.cpp

    r78 r79  
    1 /*********************************************************************
    2 // created:    2006/01/30
    3 // created:    2006/01/30 - 11:09
    4 // filename:   xmlcomponentconfig.cpp
    5 //
    6 // author:     Gerald Dherbomez
    7 //
    8 // purpose:    implementation de la classe XmlComponentConfig
    9 *********************************************************************/
     1// %pacpus:license{
     2// This file is part of the PACPUS framework distributed under the
     3// CECILL-C License, Version 1.0.
     4// %pacpus:license}
     5/// @version    $Id$
    106
    11 #include "kernel/XmlComponentConfig.h"
     7#include <Pacpus/kernel/XmlComponentConfig.h>
     8#include <Pacpus/kernel/Log.h>
     9#include <Pacpus/kernel/XmlConfigFile.h>
    1210
    13 #include "kernel/Log.h"
    14 #include "kernel/XmlConfigFile.h"
    15 
    16 namespace pacpus {
    17 
     11using namespace pacpus;
    1812using namespace std;
    1913
     
    142136    return getProperty(kPropertyComponentType.c_str());
    143137}
    144 
    145 } // namespace pacpus
Note: See TracChangeset for help on using the changeset viewer.