X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk%2Fsrc%2FbbcreaContoursSetFileLocation.cxx;h=d05a301ec2aabcc5465ed16a09da9f5016bfcb19;hb=86f5e10e3c87848b546e96700c4d94233246c94e;hp=84c73b257a6a0df7a80d7a2171a36f6ab1dc023e;hpb=c86e56d7883a16ec6734f64b61b3d87e49527a43;p=creaContours.git diff --git a/bbtk/src/bbcreaContoursSetFileLocation.cxx b/bbtk/src/bbcreaContoursSetFileLocation.cxx index 84c73b2..d05a301 100644 --- a/bbtk/src/bbcreaContoursSetFileLocation.cxx +++ b/bbtk/src/bbcreaContoursSetFileLocation.cxx @@ -11,12 +11,12 @@ namespace bbcreaContours BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,SetFileLocation) BBTK_BLACK_BOX_IMPLEMENTATION(SetFileLocation,bbtk::AtomicBlackBox); -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void SetFileLocation::Process() { - // THE MAIN PROCESSING METHOD BODY // Here we simply set the input 'In' value to the output 'Out' // And print out the output value @@ -31,60 +31,53 @@ void SetFileLocation::Process() // bbSetOutputOut( bbGetInputIn() ); // std::cout << "Output value = " <GetFileLocation().empty()==true) { - wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() ); + wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() ); }else { wxContourMainFrame::getInstance()->onSave(); wxContourMainFrame::getInstance()->deleteAllContours(); - wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() ); + wxContourMainFrame::getInstance()->SetFileLocation( bbGetInputFileLocation() ); } // if FileLocaton - - wxContourMainFrame::getInstance()->onLoad(); + wxContourMainFrame::getInstance()->onLoad( false ); wxContourMainFrame::getInstance()->RefreshInterface(); } // if Instance } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void SetFileLocation::bbUserSetDefaultValues() { - // SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX // Here we initialize the input 'In' to 0 bbSetInputFileLocation(""); - } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void SetFileLocation::bbUserInitializeProcessing() { - // THE INITIALIZATION METHOD BODY : // Here does nothing // but this is where you should allocate the internal/output pointers -// if any - - +// if any } -//===== + +//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void SetFileLocation::bbUserFinalizeProcessing() { - // THE FINALIZATION METHOD BODY : // Here does nothing // but this is where you should desallocate the internal/output pointers // if any - } -} -// EO namespace bbcreaContours + +}// EO namespace bbcreaContours