What is the difference between these two ways of defining a class?
TMyClass = class
end;
TMyObject = class(TObject)
end;
Obviously one derives from a TObject
and the other is a class of its own. But what is the fundamental difference between using the two?