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


C++ KValueRef类代码示例

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


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

示例1: _GetVersion

 void ApplicationBinding::_GetVersion(const ValueList& args, KValueRef result)
 {
     result->SetString(this->application->version);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:4,代码来源:application_binding.cpp

示例2: _GetProcessorCount

void Platform::_GetProcessorCount(const ValueList& args, KValueRef result)
{
    result->SetInt(PlatformUtils::GetProcessorCount());
}
开发者ID:finglish,项目名称:titanium_desktop,代码行数:4,代码来源:Platform.cpp

示例3: _GetMachineId

void Platform::_GetMachineId(const ValueList& args, KValueRef result)
{
    result->SetString(PlatformUtils::GetMachineId().c_str());
}
开发者ID:finglish,项目名称:titanium_desktop,代码行数:4,代码来源:Platform.cpp

示例4: IsHTTPOnly

	void HTTPCookie::IsHTTPOnly(const ValueList& args, KValueRef result)
	{
		result->SetBool(this->cookie.getHttpOnly());
	}
开发者ID:JamesHayton,项目名称:titanium_desktop,代码行数:4,代码来源:http_cookie.cpp

示例5: ToString

	void HTTPCookie::ToString(const ValueList& args, KValueRef result)
	{
		result->SetString(this->cookie.toString().c_str());
	}
开发者ID:JamesHayton,项目名称:titanium_desktop,代码行数:4,代码来源:http_cookie.cpp

示例6: _GetText

void Clipboard::_GetText(const ValueList& args, KValueRef result)
{
    result->SetString(this->GetText());
}
开发者ID:Defachko,项目名称:titanium_desktop,代码行数:4,代码来源:Clipboard.cpp

示例7: GetMaxAge

	void HTTPCookie::GetMaxAge(const ValueList& args, KValueRef result)
	{
		result->SetInt(this->cookie.getMaxAge());
	}
开发者ID:JamesHayton,项目名称:titanium_desktop,代码行数:4,代码来源:http_cookie.cpp

示例8: _GetArguments

 void ApplicationBinding::_GetArguments(const ValueList& args, KValueRef result)
 {
     std::vector<std::string> arguments = this->application->GetArguments();
     KListRef argumentList = StaticBoundList::FromStringVector(arguments);
     result->SetList(argumentList);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:6,代码来源:application_binding.cpp

示例9: _HasArgument

 void ApplicationBinding::_HasArgument(const ValueList& args, KValueRef result)
 {
     args.VerifyException("hasArgument", "s");
     string arg = args.at(0)->ToString();
     result->SetBool(this->application->HasArgument(arg));
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:6,代码来源:application_binding.cpp

示例10: _GetManifestPath

 void ApplicationBinding::_GetManifestPath(const ValueList& args, KValueRef result)
 {
     result->SetString(this->application->manifestPath);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:4,代码来源:application_binding.cpp

示例11: _IsCurrent

 void ApplicationBinding::_IsCurrent(const ValueList& args, KValueRef result)
 {
     result->SetBool(this->current);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:4,代码来源:application_binding.cpp

示例12: _GetDataPath

 void ApplicationBinding::_GetDataPath(const ValueList& args, KValueRef result)
 {
     string dataPath = this->application->GetDataPath();
     result->SetString(dataPath);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:5,代码来源:application_binding.cpp

示例13: _GetResourcesPath

 void ApplicationBinding::_GetResourcesPath(const ValueList& args, KValueRef result)
 {
     string resourcesPath = this->application->GetResourcesPath();
     result->SetString(resourcesPath);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:5,代码来源:application_binding.cpp

示例14: _GetExecutablePath

 void ApplicationBinding::_GetExecutablePath(const ValueList& args, KValueRef result)
 {
     string executablePath = this->application->GetExecutablePath();
     result->SetString(executablePath);
 }
开发者ID:fossamikom,项目名称:TideSDK,代码行数:5,代码来源:application_binding.cpp

示例15: _GetName

void ComponentBinding::_GetName(const ValueList& args, KValueRef result)
{
    result->SetString(this->component->name);
}
开发者ID:toisoftware,项目名称:TideSDK,代码行数:4,代码来源:component_binding.cpp


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