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