• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ createVanillaPrototype函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中createVanillaPrototype函数的典型用法代码示例。如果您正苦于以下问题:C++ createVanillaPrototype函数的具体用法?C++ createVanillaPrototype怎么用?C++ createVanillaPrototype使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了createVanillaPrototype函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: ClassClosure

 NamespaceClass::NamespaceClass(VTable* cvtable)
     : ClassClosure(cvtable)
 {
     toplevel()->_namespaceClass = this;
     AvmAssert(traits()->getSizeOfInstance() == sizeof(NamespaceClass));
     createVanillaPrototype();
 }
开发者ID:AdiKo,项目名称:avmplus,代码行数:7,代码来源:NamespaceClass.cpp


示例2: createVanillaPrototype

SecurityClass::SecurityClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	m_bExactSetting=true;
	//prototype = new (core()->GetGC(), cvtable->getExtraSize())SecurityObject(cvtable, toplevel()->objectClass->prototype, 0);
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:7,代码来源:AS3Security.cpp


示例3: ClassClosure

 Float4Class::Float4Class(VTable* cvtable)
 : ClassClosure(cvtable)
 {
     toplevel()->_float4Class = this;
     // prototype objects are always vanilla objects.
     createVanillaPrototype();
 }
开发者ID:AdiKo,项目名称:avmplus,代码行数:7,代码来源:Float4Class.cpp


示例4: createVanillaPrototype

SoundMixerClass::SoundMixerClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//prototype = new (core()->GetGC(), cvtable->getExtraSize())SoundMixerObject(cvtable, toplevel()->objectClass->prototype, 0);
	//Add your construct code here...
	m_strAudioPlaybackMode = NULL;//((ShellToplevel*)toplevel())->getAudioPlaybackModeClass()->getSlotMEDIA();
	m_bUseSpeakerphoneForVoice = false;
};
开发者ID:hgl888,项目名称:nashtest,代码行数:8,代码来源:AS3SoundMixer.cpp


示例5: createVanillaPrototype

CapabilitiesClass::CapabilitiesClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	InitDatas();
	MakeString();
	//prototype = new (core()->GetGC(), cvtable->getExtraSize())CapabilitiesObject(cvtable, toplevel()->objectClass->prototype, 0);
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:8,代码来源:AS3Capabilities.cpp


示例6: ClassClosure

	SystemClass::SystemClass(VTable *cvtable)
		: ClassClosure(cvtable)
    {
//		AXTam* core = (AXTam*)this->core();
//		if (core->systemClass == NULL) {
//			core->systemClass = this;
//		}
		
		createVanillaPrototype();
	}
开发者ID:Jeffxz,项目名称:nodeas,代码行数:10,代码来源:SystemClass.cpp


示例7: ClassClosure

MSIDispatchConsumerClass::MSIDispatchConsumerClass(VTable *cvtable)
    : ClassClosure(cvtable)
{
    AXTam* core = (AXTam*)this->core();
    // should only be initialized once - but see above
    if (!core->dispatchClass)
        core->dispatchClass= this;

    createVanillaPrototype();
}
开发者ID:sigma-random,项目名称:tamarin-central,代码行数:10,代码来源:mscom.cpp


示例8: ClassClosure

	QNameClass::QNameClass(VTable* cvtable)
		: ClassClosure(cvtable)
	{
		AvmAssert(traits()->getSizeOfInstance() == sizeof(QNameClass));

		createVanillaPrototype();

		AvmCore* core = this->core();
		kUri = core->internConstantStringLatin1("uri")->atom();
		kLocalName = core->internConstantStringLatin1("localName")->atom();
	}
开发者ID:hgl888,项目名称:nashtest,代码行数:11,代码来源:XMLClass.cpp


示例9: ClassClosure

    ProgramClass::ProgramClass(VTable *cvtable)
        : ClassClosure(cvtable)
    {
        ShellCore* core = (ShellCore*)this->core();
        if (core->programClass == NULL) {
            core->programClass = this;
        }

        createVanillaPrototype();

        // initialTime: support for getTimer
        // todo note this is currently routed to the performance counter
        // for benchmark purposes.
        initialPerfTime = VMPI_getPerformanceCounter();
        initialTime = VMPI_getTime();
    }
开发者ID:Adime,项目名称:redtamarin,代码行数:16,代码来源:ProgramClass.cpp


示例10: ClassClosure

 DictionaryClass::DictionaryClass(VTable *vtable)
 : ClassClosure(vtable)
 {
     createVanillaPrototype();
     vtable->traits->itraits->set_isDictionary();
 }
开发者ID:Adime,项目名称:redtamarin,代码行数:6,代码来源:DictionaryGlue.cpp


示例11: createVanillaPrototype

ScreenMouseEventClass::ScreenMouseEventClass(VTable* cvtable):ClassClosure(cvtable)//MouseEventClass(cvtable)
{
	createVanillaPrototype();
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3ScreenMouseEvent.cpp


示例12: createVanillaPrototype

ClipboardTransferModeClass::ClipboardTransferModeClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3ClipboardTransferMode.cpp


示例13: createVanillaPrototype

StageDisplayStateClass::StageDisplayStateClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//prototype = new (core()->GetGC(), cvtable->getExtraSize())StageDisplayStateObject(cvtable, toplevel()->objectClass->prototype, 0);
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:6,代码来源:AS3StageDisplayState.cpp


示例14: ClassClosure

 CdirentClass::CdirentClass(VTable *vtable)
     : ClassClosure(vtable)
 {
     createVanillaPrototype();
 }
开发者ID:Adime,项目名称:redtamarin,代码行数:5,代码来源:CDirentClass.cpp


示例15: createVanillaPrototype

	RemoteNotificationEventClass::RemoteNotificationEventClass(VTable* cvtable):ClassClosure(cvtable)//EventClass(cvtable)
	{
		createVanillaPrototype();
		//Add your construct code here...
	};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3RemoteNotificationEvent.cpp


示例16: createVanillaPrototype

StageVideoEventClass::StageVideoEventClass(VTable* cvtable):ClassClosure(cvtable)//EventClass(cvtable)
{
	createVanillaPrototype();
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3StageVideoEvent.cpp


示例17: createVanillaPrototype

TextFormatAlignClass::TextFormatAlignClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//prototype = new (core()->GetGC(), cvtable->getExtraSize())TextFormatAlignObject(cvtable, toplevel()->objectClass->prototype, 0);
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:6,代码来源:AS3TextFormatAlign.cpp


示例18: ClassClosure

 XMLListClass::XMLListClass(VTable* cvtable)
     : ClassClosure(cvtable)
 {
     AvmAssert(traits()->getSizeOfInstance() == sizeof(XMLListClass));
     createVanillaPrototype();
 }
开发者ID:AdiKo,项目名称:avmplus,代码行数:6,代码来源:XMLListClass.cpp


示例19: createVanillaPrototype

LocaleIDClass::LocaleIDClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3LocaleID.cpp


示例20: createVanillaPrototype

NativeWindowClass::NativeWindowClass(VTable* cvtable):ClassClosure(cvtable)
{
	createVanillaPrototype();
	//Add your construct code here...
};
开发者ID:hgl888,项目名称:nashtest,代码行数:5,代码来源:AS3NativeWindow.cpp



注:本文中的createVanillaPrototype函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ createVector函数代码示例发布时间:2022-05-30
下一篇:
C++ createTypeError函数代码示例发布时间:2022-05-30
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap