# File lib/puppet/util/classgen.rb, line 51
51:     def rmclass(name, options)
52:         options = symbolize_options(options)
53:         const = genconst_string(name, options)
54:         retval = false
55:         if const_defined? const
56:             remove_const(const)
57:             retval = true
58:         end
59: 
60:         if hash = options[:hash] and hash.include? name
61:             hash.delete(name)
62:             retval = true
63:         end
64: 
65:         # Let them know whether we did actually delete a subclass.
66:         return retval
67:     end