# # D.R. 2006 Instituto de Investigaciones Dr. José María Luis Mora / # Instituto de Investigaciones Estéticas. # Véase COPYING.txt y LICENSE.txt para los términos bajo los cuales # se permite la redistribución. module KRLogic class ImgFileManager @@img_files = Hash.new def ImgFileManager.addImgFile(base_name, thumb_x, thumb_y) img_file = ImgFile.new img_file.base_name = base_name img_file.thumb_x = thumb_x img_file.thumb_y = thumb_y @@img_files[base_name] = img_file end def ImgFileManager.get(base_name) @@img_files[base_name] end class ImgFile attr_accessor(:base_name, :thumb_x, :thumb_y) end end end