]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.h
Updated Version with the moving of the objects updated and the background doesn't...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GBlackBoxModel.h
index 5536e00a5104b1e37b9a6e8a3bd3295c3f3dd893..5da5e84019f3711813ea9d6095c7bd3c8c5dcda5 100644 (file)
@@ -46,6 +46,7 @@ Version:   $Revision$
 //Includes same project
 #include "GlobalConstants.h"
 #include "GObjectModel.h"
+#include "GPortModel.h"
 
 //Includes creaMaracasVisu
 
@@ -73,17 +74,24 @@ namespace bbtk
                void addOutputPort(GPortModel *outputport);
                int getNumInputPorts();
                int getNumOutputPorts();
+               virtual void move(double xx,double yy,double zz);
+               GPortModel* getStartOutputPort();
 
+               std::string getBBTKPackage();
+               void setBBTKPackage(std::string obpackage);
 
        private:
 
-               //Attributes
+               //Private Attributes
                std::vector<GPortModel*> _inputs;
                std::vector<GPortModel*> _outputs;
 
                //Private Methods
 
        protected:
+               //Protected Attributes
+               std::string _bbtkPackage;
+
                //Protected methods
                
        };