Changeset 1008
- Timestamp:
- 11/14/08 11:28:12 (2 months ago)
- Files:
-
- trunk/lib/src/Base/Func/WrapperData.cxx (modified) (1 diff)
- trunk/lib/src/Base/Func/WrapperFile.cxx (modified) (3 diffs)
- trunk/lib/src/Base/Func/WrapperFile.hxx (modified) (1 diff)
- trunk/lib/src/Base/Graph/Contour.cxx (modified) (1 diff)
- trunk/lib/src/Base/Graph/DrawableImplementation.cxx (modified) (1 diff)
- trunk/lib/src/Uncertainty/Distribution/ExtraFunc/dcdflib.cxx (modified) (1 diff)
- trunk/lib/test/external_code_threads.cxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/src/Base/Func/WrapperData.cxx
r990 r1008 126 126 { 127 127 OSS oss; 128 oss << "state=" << WrapperConfigurationStateAsString[state_] 129 << " mode=" << WrapperConfigurationModeAsString[mode_] 130 << " in=" << WrapperDataTransferModeAsString[in_] 131 << " out=" << WrapperDataTransferModeAsString[out_]; 128 oss << "state=" << WrapperConfigurationStateAsString[state_] 129 << " mode=" << WrapperConfigurationModeAsString[mode_] 130 << " in=" << WrapperDataTransferModeAsString[in_] 131 << " out=" << WrapperDataTransferModeAsString[out_] 132 << " command=" << command_; 132 133 return oss; 133 134 } trunk/lib/src/Base/Func/WrapperFile.cxx
r1003 r1008 71 71 CLASSNAMEINIT(WrapperFile); 72 72 73 /* 74 * Default constructor 75 */ 73 /* Default constructor */ 74 WrapperFile::WrapperFile() 75 : PersistentObject(), 76 descriptionFilePath_(), 77 data_() 78 { 79 // Nothing to do 80 } 81 82 /* Constructor from file */ 76 83 WrapperFile::WrapperFile(const FileName & pathToFile) 77 84 throw(WrapperFileParsingException) … … 97 104 OSS oss; 98 105 oss << "class=" << getClassName() 99 << " name=" << getName()106 << " path=" << getDescriptionFilePath() 100 107 << " data={" << data_ 101 108 << "}"; … … 542 549 // Write out the document to a file 543 550 doc.save( pathToFile ); 544 } 551 552 setDescriptionFilePath( pathToFile ); 553 } 545 554 546 555 #else trunk/lib/src/Base/Func/WrapperFile.hxx
r1003 r1008 78 78 public: 79 79 80 /** 81 * Default constructor 82 */ 80 /** Default constructor */ 81 WrapperFile(); 82 83 /** Constructor from file */ 83 84 explicit WrapperFile(const FileName & pathToFile) 84 85 throw(WrapperFileParsingException); trunk/lib/src/Base/Graph/Contour.cxx
r937 r1008 24 24 * Id: $Id$ 25 25 */ 26 #include <cstdio> 26 27 #include "Contour.hxx" 27 28 #include "PersistentObjectFactory.hxx" trunk/lib/src/Base/Graph/DrawableImplementation.cxx
r818 r1008 26 26 27 27 #include <algorithm> 28 #include <cstdio> 28 29 #include <cstdlib> 29 30 #include "DrawableImplementation.hxx" trunk/lib/src/Uncertainty/Distribution/ExtraFunc/dcdflib.cxx
r929 r1008 28 28 # include <cmath> 29 29 # include <ctime> 30 # include <cstdio> 30 31 # include <cstdlib> 31 32 trunk/lib/test/external_code_threads.cxx
r862 r1008 26 26 #include <iostream> 27 27 #include <cmath> 28 #include <cstdio> 28 29 #include <cstdlib> 29 30 #include "OT.hxx"
