הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'class1' : a coclass cannot inherit from another coclass 'class2'
Remarks
A class marked with the coclass attribute cannot inherit from another class marked with the coclass attribute.
Example
The following example generates C3247:
// C3247.cpp
[module(name="MyLib")];
[coclass]
class a {
};
[coclass]
class b : public a { // C3247
};
int main() {
}