明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1739|回复: 0

[求助]自定义对象的rxInit()函数,编译时说是私有。求助啊~

[复制链接]
发表于 2010-6-29 16:15:00 | 显示全部楼层 |阅读模式

MyClass个派生自AcDbObject类

按照一个教程的代码敲的,然后在如下的函数里

 

 virtual AcRx::AppRetCode On_kInitAppMsg(void* pkt)
 {
      // TODO: Load dependencies here

      // You *must* call On_kInitAppMsg here
      AcRx::AppRetCode retCode = AcRxArxApp::On_kInitAppMsg(pkt);

 

      // TODO: 在此添加额外的初始化代码
      MyClass::rxInit();       // 就是这个报错,说是 error C2248: “MyClass::rxInit”: 无法访问 private 成员(在“MyClass”类中声明)
      acrxBuildClassHierarchy();

      return retCode;
 }

 

但是我的MyClass类中并没有重载这个rxInit()函数,并且在如下的函数里 MyClass::desc()函数也报了同样的错误。。。

 virtual AcRx::AppRetCode On_kUnloadAppMsg(void* pkt)
 {
      // TODO: 在此添加额外的清理代码

      // You *must* call On_kUnloadAppMsg here
      AcRx::AppRetCode retCode = AcRxArxApp::On_kUnloadAppMsg(pkt);

      // TODO: Unload dependencies here
      deleteAcRxClass(MyClass::desc()); //  error C2248: “MyClass::desc”: 无法访问 private 成员(在“MyClass”类中声明) 

      return retCode;
 }

 

麻烦各位高手看看,是我哪少写了什么东西?这两个函数在AcDbObject里是私有的,那该怎么调用啊。。。

 

谢谢了。。

 

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 12:37 , Processed in 0.142163 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表