class BinData::Struct

def inherited(subclass) #:nodoc:

:nodoc:

### DEPRECATION HACK to warn about inheriting from BinData::Struct
def inherited(subclass) #:nodoc:
  if subclass != MultiValue
    # warn about deprecated method - remove before releasing 1.0
    fail "error: inheriting from BinData::Struct has been deprecated. Inherit from BinData::MultiValue instead."
  end
end