X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsKernelEditorGraphic%2FGBlackBoxModel.h;h=f6ad73bd883d053a4a6a45edebdbbcc6fd8317ee;hb=HEAD;hp=04ae668d17ad68a72b1836274a06ad6e7e197d29;hpb=e36858ea5937bb1699bc437136718007df27be7b;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h b/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h index 04ae668..f6ad73b 100644 --- a/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h +++ b/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h @@ -9,7 +9,7 @@ Version: $Revision$ /* --------------------------------------------------------------------- * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) -* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux +* Authors : Ricardo A Corredor, Eduardo Davila, Laurent Guigues, Jean-Pierre Roux * * This software is governed by the CeCILL-B license under French law and * abiding by the rules of distribution of free software. You can use, @@ -28,25 +28,18 @@ Version: $Revision$ * knowledge of the CeCILL-B license and that you accept its terms. * ------------------------------------------------------------------------ */ - - -/** -* \file -* \brief Class bbtk::GBlackBox : abstract black-box interface. -*/ - -/** -* \class bbtk::GBlackBox -* \brief -*/ +/**** +* Design and Developpement of BBTK GEditor +* Ricardo A Corredor J +* RaC - 2010 +****/ #ifndef __GBlackBoxModel_h__ #define __GBlackBoxModel_h__ //Includes same project #include "GlobalConstants.h" -#include "GObjectModel.h" -#include "GPortModel.h" +#include "GBoxModel.h" //Includes creaMaracasVisu @@ -57,10 +50,8 @@ Version: $Revision$ namespace bbtk { - class GPortModel; - - class GBlackBoxModel : public GObjectModel - { + class GBlackBoxModel : public GBoxModel + { public: @@ -68,40 +59,42 @@ namespace bbtk GBlackBoxModel(); ~GBlackBoxModel(); - //Public methods - virtual void setInicPoint(double& x, double& y, double& z); - void addInputPort(GPortModel *inputport); - void addOutputPort(GPortModel *outputport); - int getNumInputPorts(); - int getNumOutputPorts(); - virtual void move(double xx,double yy,double zz); - GPortModel* getStartOutputPort(); + //Public methods + // The black box has an specific package (important to search in the list with the BBTK Interpreter) std::string getBBTKPackage(); void setBBTKPackage(std::string obpackage); + // Text in the status bar virtual std::string getStatusText(); + + // Method to write the information of the black box to be saved in the parameter string virtual void save(std::string &content); + // Is the black box executable or not bool isExecutable(); void setExecutable(bool executable); - std::vector getInputPorts(); - std::vector getOutputPorts(); - + // Set 'value' to the port in position 'pos' void setValueToInputPort(int pos,std::string value); + + // Set 'value' to the port with name 'name' void setValueToInput(std::string name,std::string value); - GPortModel* getInputPort(std::string name); - GPortModel* getOutputPort(std::string name); + // Get the value of the port in position 'pos' + std::string getValueInputPort(int pos); + + // Get the value of the port with name 'name' + std::string getValueInput(std::string name); - void updatePorts(); + // Get id's of the connected inputs + std::vector getConnectedInputs(); + // Get id's of the connected outputs + std::vector getConnectedOutputs(); private: //Private Attributes - std::vector _inputs; - std::vector _outputs; bool _isExecutable; //Private Methods