# # cim/indication.rb - class CIM::Indication # # A pure-Ruby implementation of the CIM meta model. # # Copyright (c) 2010 Klaus Kämpf # # Licensed under the Ruby license # module CIM # # Indication is a Class whose Instances are sending asynchronous notifications # class Indication < Class # # true if class has indications (indication provider) # def indication? true end end end