]> Creatis software - bbtk.git/commitdiff
Bug #1804 An extra file appeared after CVS to Git conversion.
authorMouton <mouton@moutonf16.(none)>
Wed, 21 Nov 2012 03:45:47 +0000 (04:45 +0100)
committerMouton <mouton@moutonf16.(none)>
Wed, 21 Nov 2012 03:45:55 +0000 (04:45 +0100)
The file was removed.

packages/std/bbs/boxes/bbLoadHola.bbs [deleted file]

diff --git a/packages/std/bbs/boxes/bbLoadHola.bbs b/packages/std/bbs/boxes/bbLoadHola.bbs
deleted file mode 100644 (file)
index 99605e2..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-load vtk
-include util/boxes/bbPrependPackageDataPath
-
-define LoadHola
-  description "Loads the image 'hola.mhd'" 
-  author "laurent.guigues at creatis.insa-lyon.fr"
-  category "image;misc"
-
-  new MetaImageReader reader
-  new PrependPackageDataPath ppdp
-  set ppdp.In "hola.mhd"
-  set ppdp.Package "util"
-  connect ppdp.Out reader.In
-  output Out reader.Out "The image"
-  output FileName ppdp.Out "The path to the image loaded"
-
-endefine