From 608e0518096826312cf964e420bff84e8e607a5e Mon Sep 17 00:00:00 2001 From: cas Date: Thu, 13 Jan 2000 17:59:02 +0000 Subject: [PATCH] No comments --- src/WOKBuilder/WOKBuilder_CompilerIterator.cdl | 4 ++++ src/WOKBuilder/WOKBuilder_CompilerIterator.cxx | 6 ++++++ src/WOKBuilder/WOKBuilder_MSTranslator.cdl | 5 +++++ src/WOKBuilder/WOKBuilder_MSTranslator.cxx | 9 ++++++++- src/WOKBuilder/WOKBuilder_ToolInProcess.cdl | 3 +++ src/WOKBuilder/WOKBuilder_ToolInProcess.cxx | 6 ++++++ 6 files changed, 32 insertions(+), 1 deletion(-) diff --git a/src/WOKBuilder/WOKBuilder_CompilerIterator.cdl b/src/WOKBuilder/WOKBuilder_CompilerIterator.cdl index 4e2fbbd..4a7df0b 100755 --- a/src/WOKBuilder/WOKBuilder_CompilerIterator.cdl +++ b/src/WOKBuilder/WOKBuilder_CompilerIterator.cdl @@ -38,6 +38,10 @@ is params : Param from WOKUtils) returns CompilerIterator from WOKBuilder; + Init(me:out; ashell : Shell from WOKUtils; + adir : Path from WOKUtils) + is redefined; + Init(me:out; ashell : Shell from WOKUtils; adir : Path from WOKUtils; incdirs : HSequenceOfPath from WOKUtils; diff --git a/src/WOKBuilder/WOKBuilder_CompilerIterator.cxx b/src/WOKBuilder/WOKBuilder_CompilerIterator.cxx index c125d85..31a227f 100755 --- a/src/WOKBuilder/WOKBuilder_CompilerIterator.cxx +++ b/src/WOKBuilder/WOKBuilder_CompilerIterator.cxx @@ -3,6 +3,7 @@ // Author: Jean GAUTIER // +#include #include @@ -93,6 +94,11 @@ void WOKBuilder_CompilerIterator::Init(const Handle(WOKUtils_Shell)& ashell, } } +void WOKBuilder_CompilerIterator::Init(const Handle(WOKUtils_Shell)& ashell,const Handle(WOKUtils_Path)& adir) +{ +// Standard_NotImplemented::Raise("WOKBuilder_CompilerIterator::Init(const Handle(WOKUtils_Shell)& ashell,const Handle(WOKUtils_Path)& adir) not implemented") ; + WOKBuilder_ToolInShellIterator::Init( ashell , adir ) ; +} //======================================================================= //Author : Jean Gautier (jga) diff --git a/src/WOKBuilder/WOKBuilder_MSTranslator.cdl b/src/WOKBuilder/WOKBuilder_MSTranslator.cdl index 0b07d9a..9ee8dd6 100755 --- a/src/WOKBuilder/WOKBuilder_MSTranslator.cdl +++ b/src/WOKBuilder/WOKBuilder_MSTranslator.cdl @@ -158,6 +158,11 @@ is anit : out MSTranslatorIterator from WOKBuilder) returns BuildStatus from WOKBuilder is private; + Execute(me:mutable) + returns BuildStatus from WOKBuilder + raises ProgramError from Standard + is redefined; + Execute(me:mutable; anaction : MSAction from WOKBuilder; afile : Specification from WOKBuilder; anit : out MSTranslatorIterator from WOKBuilder) diff --git a/src/WOKBuilder/WOKBuilder_MSTranslator.cxx b/src/WOKBuilder/WOKBuilder_MSTranslator.cxx index 6c9032a..18329e7 100755 --- a/src/WOKBuilder/WOKBuilder_MSTranslator.cxx +++ b/src/WOKBuilder/WOKBuilder_MSTranslator.cxx @@ -3,6 +3,8 @@ // Author: Jean GAUTIER // +#include + #include #include @@ -1989,4 +1991,9 @@ WOKBuilder_BuildStatus WOKBuilder_MSTranslator::Execute(const Handle(WOKBuilder_ } } - +WOKBuilder_BuildStatus WOKBuilder_MSTranslator::Execute(void) +{ +// Standard_NotImplemented::Raise("WOKBuilder_MSTranslator::Execute(void) not implemented") ; +// return WOKBuilder_Failed ; + return WOKBuilder_MSTool::Execute() ; +} diff --git a/src/WOKBuilder/WOKBuilder_ToolInProcess.cdl b/src/WOKBuilder/WOKBuilder_ToolInProcess.cdl index 0d9f41a..9e24eff 100755 --- a/src/WOKBuilder/WOKBuilder_ToolInProcess.cdl +++ b/src/WOKBuilder/WOKBuilder_ToolInProcess.cdl @@ -21,6 +21,9 @@ raises is Initialize(aname: HAsciiString from TCollection; params : Param from WOKUtils); + Load(me:mutable) + is redefined; + Load(me:mutable; alibrary: Path from WOKUtils; afunc : HAsciiString from TCollection); Shared(me) returns HAsciiString from TCollection; diff --git a/src/WOKBuilder/WOKBuilder_ToolInProcess.cxx b/src/WOKBuilder/WOKBuilder_ToolInProcess.cxx index e4dfcfb..6132661 100755 --- a/src/WOKBuilder/WOKBuilder_ToolInProcess.cxx +++ b/src/WOKBuilder/WOKBuilder_ToolInProcess.cxx @@ -3,6 +3,7 @@ // Author: Jean GAUTIER // +#include #include @@ -62,6 +63,11 @@ void WOKBuilder_ToolInProcess::Load(const Handle(WOKUtils_Path)& alibrary, SetLoaded(); } +void WOKBuilder_ToolInProcess::Load() +{ + Standard_NotImplemented::Raise("WOKBuilder_ToolInProcess::Load() not implemented") ; +} + //======================================================================= //function : Shared //purpose : -- 2.39.5