Changeset 31 in pacpusframework for trunk/src/FileLib
- Timestamp:
- Jan 8, 2013, 6:10:10 PM (12 years ago)
- Location:
- trunk/src/FileLib/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FileLib/src/DbiteException.cpp
r3 r31 1 // Copyright Marek Kurdej 2010 - 2012. 2 // Distributed under the UTC Heudiasyc Pacpus License, Version 1.0. 3 // See accompanying file LICENSE_1_0.txt or copy at 4 // http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt 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 */ 5 10 6 #include "kernel/DbiteException.h"11 #include <Pacpus/kernel/DbiteException.h> 7 12 8 13 using namespace pacpus; -
trunk/src/FileLib/src/DbiteFile.cpp
r3 r31 1 // Copyright Marek Kurdej 2010 - 2012. 2 // Distributed under the UTC Heudiasyc Pacpus License, Version 1.0. 3 // See accompanying file LICENSE_1_0.txt or copy at 4 // http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt 5 6 #include "kernel/DbiteFile.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/DbiteFile.h> 12 #include <Pacpus/kernel/DbiteException.h> 13 #include <Pacpus/kernel/DbiteFileTypes.h> 14 #include <Pacpus/kernel/Log.h> 7 15 8 16 #include <cassert> … … 12 20 #include <sstream> 13 21 14 #include "kernel/DbiteException.h" 15 #include "kernel/DbiteFileTypes.h" 16 #include "kernel/Log.h" 17 18 namespace pacpus { 19 22 using namespace pacpus; 20 23 using namespace std; 21 24 … … 25 28 DECLARE_STATIC_LOGGER("pacpus.core.DbiteFile"); 26 29 27 VariableDataSizeTag VariableDataSize; 28 ReadModeTag ReadMode; 29 WriteModeTag WriteMode; 30 DiagnoseModeTag DiagnoseMode; 30 namespace pacpus 31 { 32 VariableDataSizeTag VariableDataSize; 33 ReadModeTag ReadMode; 34 WriteModeTag WriteMode; 35 DiagnoseModeTag DiagnoseMode; 36 } 31 37 32 38 bool doesFileExist(const string & path); … … 797 803 return fileExist; 798 804 } 799 800 } // namespace pacpus
Note:
See TracChangeset
for help on using the changeset viewer.