1

I've been reading some details about Qt d-pointer and came across the binary compatibility term. Is this the same as backward compatibility?

linuxbuild
  • 15,843
  • 6
  • 60
  • 87
Tharanga
  • 2,007
  • 4
  • 32
  • 50

1 Answers1

4

Backward compatibility of shared libraries includes:

  1. Binary compatibility
  2. Source compatibility
  3. Behavioral compatibility

So, the answer is NO. Binary compatibility is only the part of backward compatibility.

See the "Kinds of Compatibility: Source, Binary, and Behavioral" for more info.

sanjeevonline
  • 357
  • 2
  • 9
linuxbuild
  • 15,843
  • 6
  • 60
  • 87