From 54fe3ece5a0a52236ba68d53438af7055e2c75b7 Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Fri, 2 Jun 2023 11:07:38 +0200 Subject: [PATCH] 3509 JavaScript --- .../src/bbcreaVtkHttpDataSetReader.xml | 122 ++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkHttpDataSetReader.xml diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkHttpDataSetReader.xml b/bbtk_creaVtk_PKG/src/bbcreaVtkHttpDataSetReader.xml new file mode 100644 index 0000000..e0d16387 --- /dev/null +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkHttpDataSetReader.xml @@ -0,0 +1,122 @@ + + + + + + + + + InfoDev + No Description. (JavaScript) + empty + + + +
iostream
+
vtkImageData.h
+ + + + + + +
typedef std::vector OutputTypeVectorString;
+
typedef std::vector OutputTypeVectorVtkImageData;
+ + + + + + + + + + +
+// THE MAIN PROCESSING METHOD BODY
+//   Here we simply set the input 'In' value to the output 'Out'
+//   And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+//    void bbSet{Input|Output}NAME(const TYPE&)
+//    const TYPE& bbGet{Input|Output}NAME() const 
+//    Where :
+//    * NAME is the name of the input/output
+//      (the one provided in the attribute 'name' of the tag 'input')
+//    * TYPE is the C++ type of the input/output
+//      (the one provided in the attribute 'type' of the tag 'input')
+//    bbSetOutputOut( bbGetInputIn() );
+//    std::cout << "Output value = " <
+  
+  
+
+   
+  
+//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
+//    Here we initialize the input 'In' to 0
+//   bbSetInputIn(0);
+  
+
+ + + + +
+//  THE INITIALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should allocate the internal/output pointers 
+//    if any 
+
+  
+
+ + +
+//  THE FINALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should desallocate the internal/output pointers 
+//    if any
+  
+
+ + + + + + -- 2.45.1