C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2247
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2247
 
     'identifier' not accessible because 'class' uses 'specifier' to
     inherit from 'class'
 
     The specified identifier was inherited from a class declared with
     private or protected access.
 
     The following is an example of this error:
 
          class A
          {
          public:
             int i;
          };
 
          class B : private A {};    // B inherits a private A
 
          class C : public B {} c;   // so even though C's B is public
 
          int j = c.i;               // error, i not accessible
                                    -♦-