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


C++ PluginInfo::SetDescription方法代码示例

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


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

示例1: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo() {
	PluginInfo info;
	info.SetAuthor(wxT("Peter Janků, Michal Bližňák, Tomas Bata University in Zlin, Czech Republic (www.fai.utb.cz)"));
	info.SetName(_("DatabaseExplorer"));
	info.SetDescription(_("DatabaseExplorer for CodeLite"));
	info.SetVersion(DBE_VERSION);
	return info;
}
开发者ID:AndrianDTR,项目名称:codelite,代码行数:8,代码来源:databaseexplorer.cpp

示例2: GetPluginInfo

CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
    static PluginInfo info;
    info.SetAuthor(wxT("Eran Ifrah"));
    info.SetName(wxT("Word Completion"));
    info.SetDescription(_("Suggest completion based on words typed in the editors"));
    info.SetVersion(wxT("v1.0"));
    return &info;
}
开发者ID:nanolion,项目名称:codelite,代码行数:9,代码来源:wordcompletion.cpp

示例3: GetPluginInfo

CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
    static PluginInfo info;
    info.SetAuthor(wxT("Eran Ifrah, patched by Stefan Roesch"));
    info.SetName(CSCOPE_NAME);
    info.SetDescription(_("CScope Integration for CodeLite"));
    info.SetVersion(wxT("v1.1"));
    return &info;
}
开发者ID:292388900,项目名称:codelite,代码行数:9,代码来源:cscope.cpp

示例4: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo()
{
    PluginInfo info;
    info.SetAuthor(wxT("Eran Ifrah"));
    info.SetName(wxT("Outline"));
    info.SetDescription(_("Show Current the Layout of the current file"));
    info.SetVersion(wxT("v1.0"));
    return info;
}
开发者ID:capturePointer,项目名称:codelite,代码行数:9,代码来源:outline.cpp

示例5: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo()
{
	PluginInfo info;
	info.SetAuthor(wxT("Eran Ifrah, patched by Stefan Roesch"));
	info.SetName(CSCOPE_NAME);
	info.SetDescription(wxT("CScope Integration for EmbeddedLite"));
	info.SetVersion(wxT("v1.1"));
	return info;
}
开发者ID:RVictor,项目名称:EmbeddedLite,代码行数:9,代码来源:cscope.cpp

示例6: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo()
{
    PluginInfo info;
    info.SetAuthor(wxT("Eran Ifrah"));
    info.SetName(wxT("QMakePlugin"));
    info.SetDescription(_("Qt's QMake integration with CodeLite"));
    info.SetVersion(wxT("v1.0"));
    return info;
}
开发者ID:AndrianDTR,项目名称:codelite,代码行数:9,代码来源:qmakeplugin.cpp

示例7: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo()
{
	PluginInfo info;
	info.SetAuthor(wxT("NilC"));
	info.SetName(wxT("CodeBeautifier"));
	info.SetDescription(wxT("Source Code Formatter based on the open source Uncrustify tool"));
	info.SetVersion(wxT("v1.0"));
	return info;
}
开发者ID:HTshandou,项目名称:codelite,代码行数:9,代码来源:codebeautifier.cpp

示例8: GetPluginInfo

// ------------------------------------------------------------
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
    static PluginInfo info;
    info.SetAuthor(wxT("Frank Lichtner"));
    info.SetName(wxT("SpellCheck"));
    info.SetDescription(_("CodeLite spell checker"));
    info.SetVersion(wxT("v1.6"));
    return &info;
}
开发者ID:nanolion,项目名称:codelite,代码行数:10,代码来源:spellcheck.cpp

示例9: GetPluginInfo

extern "C" EXPORT PluginInfo GetPluginInfo()
{
    PluginInfo info;
    info.SetAuthor(wxT("eran"));
    info.SetName(wxT("Tweaks"));
    info.SetDescription(wxT("Tweak codelite"));
    info.SetVersion(wxT("v1.0"));
    return info;
}
开发者ID:AndrianDTR,项目名称:codelite,代码行数:9,代码来源:tweaks.cpp

示例10: GetPluginInfo

CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
    static PluginInfo info;
    info.SetAuthor(wxT("Frank Lichtner"));
    info.SetName(plugName);
    info.SetDescription(_("A small tool to add expandable code snippets and template classes"));
    info.SetVersion(wxT("v1.0"));
    return &info;
}
开发者ID:eranif,项目名称:codelite,代码行数:9,代码来源:snipwiz.cpp

示例11: GetPluginInfo

CL_PLUGIN_API PluginInfo GetPluginInfo()
{
    PluginInfo info;
    info.SetAuthor(wxT("pavel.iqx"));
    info.SetName(wxT("MemCheck"));
    info.SetDescription(_("MemCheck plugin detects memory leaks. Uses Valgrind (memcheck tool) as backend."));
    info.SetVersion(wxT("0.5"));
    return info;
}
开发者ID:FerencYAO,项目名称:codelite,代码行数:9,代码来源:memcheck.cpp

示例12: GetPluginInfo

// ------------------------------------------------------------
extern "C" EXPORT PluginInfo GetPluginInfo()
{
    PluginInfo info;
    info.SetAuthor(wxT("Frank Lichtner"));
    info.SetName(wxT("SpellCheck"));
    info.SetDescription(wxT("CodeLite spell checker"));
    info.SetVersion(wxT("v1.6"));
    return info;
}
开发者ID:05storm26,项目名称:codelite,代码行数:10,代码来源:spellcheck.cpp


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