]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h
Change in colors and middle button to select executable box(es)
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GBlackBoxModel.h
index f1c36cf6030daf603e07b8d15209c24e1f9a711d..82214a4ad29c4818c145a6d4ca81b205ca09de35 100644 (file)
@@ -75,18 +75,29 @@ namespace bbtk
                int getNumInputPorts();
                int getNumOutputPorts();
                virtual void move(double xx,double yy,double zz);
-               GPortModel* getStartInputPort();
+               GPortModel* getStartOutputPort();
 
+               std::string getBBTKPackage();
+               void setBBTKPackage(std::string obpackage);
+
+               virtual std::string getStatusText();
+
+               bool isExecutable();
+               void setExecutable(bool executable);
 
        private:
 
-               //Attributes
+               //Private Attributes
                std::vector<GPortModel*> _inputs;
                std::vector<GPortModel*> _outputs;
+               bool _isExecutable;
 
                //Private Methods
 
        protected:
+               //Protected Attributes
+               std::string _bbtkPackage;
+
                //Protected methods
                
        };