17 lines
285 B
Ruby
17 lines
285 B
Ruby
module Mutant
|
|
# Abstract base class for reporters
|
|
class Reporter
|
|
include Adamantium::Flat, AbstractType
|
|
|
|
# Report object
|
|
#
|
|
# @param [Object] object
|
|
#
|
|
# @return [self]
|
|
#
|
|
# @api private
|
|
#
|
|
abstract_method :report
|
|
|
|
end # Reporter
|
|
end # Mutant
|