当前位置: 首页>>代码示例>>C++>>正文


C++ createVanillaPrototype函数代码示例

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


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


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