◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2269 'identifier' : different ambient model than base class 'class' The specified derived class or structure did not explicitly specify an ambient memory model. A class that is derived from base classes with differing ambient memory models must specify an ambient memory model. The following is an example of this error: class __far F {}; class __near N {}; class Err : F, N {}; // error class __far NoErr : F, N {}; // OK -♦-