summaryrefslogtreecommitdiffstats
path: root/source/Plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugin.cpp')
-rw-r--r--source/Plugin.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/Plugin.cpp b/source/Plugin.cpp
index 563e6237d..7a22f803e 100644
--- a/source/Plugin.cpp
+++ b/source/Plugin.cpp
@@ -7,10 +7,11 @@
-cPlugin::cPlugin()
+cPlugin::cPlugin( const AString & a_PluginDirectory )
: m_Version( 0 )
, m_Language( E_CPP )
, m_bCanBindCommands( false )
+ , m_Directory( a_PluginDirectory )
{
}
@@ -306,3 +307,8 @@ void cPlugin::AddCommand(const AString & a_Command, const AString & a_Descriptio
+
+AString cPlugin::GetLocalDirectory(void) const
+{
+ return std::string("Plugins/") + m_Directory;
+} \ No newline at end of file