]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h
It is possible to delete connections !!!
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GBlackBoxModel.h
index 160ac37cd32a7ba3ce023333fdb8f6769bd30203..c766dba08a26d75bcad5c949dd9213d80010ac24 100644 (file)
@@ -77,16 +77,32 @@ namespace bbtk
                virtual void move(double xx,double yy,double zz);
                GPortModel* getStartOutputPort();
 
+               std::string getBBTKPackage();
+               void setBBTKPackage(std::string obpackage);
+
+               virtual std::string getStatusText();
+
+               bool isExecutable();
+               void setExecutable(bool executable);
+
+               std::vector<GPortModel*> getInputPorts();
+               std::vector<GPortModel*> getOutputPorts();
+
+               void setValueToInputPort(int pos,std::string value);
 
        private:
 
-               //Attributes
+               //Private Attributes
                std::vector<GPortModel*> _inputs;
                std::vector<GPortModel*> _outputs;
+               bool _isExecutable;
 
                //Private Methods
 
        protected:
+               //Protected Attributes
+               std::string _bbtkPackage;
+
                //Protected methods
                
        };