Changeset 31 in pacpusframework for trunk/src/PacpusLib
- Timestamp:
- Jan 8, 2013, 6:10:10 PM (12 years ago)
- Location:
- trunk/src/PacpusLib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/ComponentBase.cpp
r30 r31 1 /********************************************************************* 2 // created: 2006/02/07 - 11:58 3 // filename: ComponentBase.cpp 4 // 5 // author: Gerald Dherbomez 6 // 7 // purpose: implementation of ComponentBase class 8 *********************************************************************/ 1 /** 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 * 9 */ 9 10 10 11 #include <Pacpus/kernel/ComponentBase.h> -
trunk/src/PacpusLib/ComponentFactoryBase.cpp
r3 r31 1 // ******************************************************************** 2 // created: 2006/02/14 - 16:07 3 // filename: ComponentFactoryBase.cpp 4 // 5 // author: Gerald Dherbomez 6 // 7 // purpose: Implementation of ComponentFactoryBase class 8 // ********************************************************************* 1 /** 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 * 9 */ 9 10 10 #include "kernel/ComponentFactoryBase.h" 11 12 #include "kernel/ComponentBase.h" 13 #include "kernel/ComponentManager.h" 14 #include "kernel/Log.h" 11 #include <Pacpus/kernel/ComponentFactoryBase.h> 12 #include <Pacpus/kernel/ComponentBase.h> 13 #include <Pacpus/kernel/ComponentManager.h> 14 #include <Pacpus/kernel/Log.h> 15 15 16 16 #include <cassert> 17 17 #include <QString> 18 18 19 namespace pacpus { 19 using namespace pacpus; 20 20 21 21 DECLARE_STATIC_LOGGER("pacpus.core.ComponentFactoryBase"); … … 61 61 } 62 62 } 63 64 } // namespace pacpus -
trunk/src/PacpusLib/ComponentManager.cpp
r16 r31 1 #include "kernel/ComponentManager.h" 2 #include "kernel/ComponentBase.h" 3 #include "kernel/Log.h" 1 /** 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 * 9 */ 10 11 #include <Pacpus/kernel/ComponentManager.h> 12 #include <Pacpus/kernel/ComponentBase.h> 13 #include <Pacpus/kernel/Log.h> 4 14 5 15 using namespace pacpus; -
trunk/src/PacpusLib/Log.cpp
r3 r31 1 #include "kernel/Log.h" 1 /** 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 * 9 */ 10 11 #include <Pacpus/kernel/Log.h> 2 12 3 13 #ifdef PACPUS_USE_LOG -
trunk/src/PacpusLib/XmlComponentConfig.cpp
r3 r31 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 /** 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 * 9 */ 10 10 11 #include "kernel/XmlComponentConfig.h" 11 #include <Pacpus/kernel/XmlComponentConfig.h> 12 #include <Pacpus/kernel/Log.h> 13 #include <Pacpus/kernel/XmlConfigFile.h> 12 14 13 #include "kernel/Log.h" 14 #include "kernel/XmlConfigFile.h" 15 16 namespace pacpus { 17 15 using namespace pacpus; 18 16 using namespace std; 19 17 … … 142 140 return getProperty(kPropertyComponentType.c_str()); 143 141 } 144 145 } // namespace pacpus -
trunk/src/PacpusLib/XmlConfigFile.cpp
r3 r31 1 /********************************************************************* 2 // created: 2006/01/30 3 // created: 2006/01/30 - 13:49 4 // filename: xmlconfigfile.cpp 5 // 6 // author: Gerald Dherbomez 7 // 8 // purpose: Implementation de la classe XmlConfigFile 9 *********************************************************************/ 10 11 #include "kernel/XmlConfigFile.h" 12 13 #include "kernel/Log.h" 1 /** 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 * 9 */ 10 11 #include <Pacpus/kernel/XmlConfigFile.h> 12 #include <Pacpus/kernel/Log.h> 14 13 15 14 #include <QFile> 16 15 #include <QTextStream> 17 16 18 namespace pacpus { 19 17 using namespace pacpus; 20 18 using namespace std; 21 19 … … 209 207 } 210 208 } 211 212 } // namespace pacpus
Note:
See TracChangeset
for help on using the changeset viewer.