F
folmorse
Unregistered / Unconfirmed
GUEST, unregistred user!
假如Idl文件如下:
interface Account{
void RemoveAccount(in long AccountID);
}
通过Corba Object Implementation 得到结果:
class TAccountImpl: public TDataModule
{
__published: // IDE-managed Components
private: // User declarations
public: // User declarations
_fastcall AccountImpl(TComponent* Owner);
void __fastcall RemoveAccount(CORBA::Long _AccountID);
}
但是我想得到的是
void __fastcall RemoveAccount(CORBA::Long AccountID);
(因为CB的例子里面就是这样).
请问有什么方法吗?当然不要手工去一个一个的改吧!
interface Account{
void RemoveAccount(in long AccountID);
}
通过Corba Object Implementation 得到结果:
class TAccountImpl: public TDataModule
{
__published: // IDE-managed Components
private: // User declarations
public: // User declarations
_fastcall AccountImpl(TComponent* Owner);
void __fastcall RemoveAccount(CORBA::Long _AccountID);
}
但是我想得到的是
void __fastcall RemoveAccount(CORBA::Long AccountID);
(因为CB的例子里面就是这样).
请问有什么方法吗?当然不要手工去一个一个的改吧!