From 7dc9d6ab2756b6ded0259b2e9ef7c9da99604504 Mon Sep 17 00:00:00 2001 From: prozacx Date: Sun, 3 Apr 2005 08:19:04 +0000 Subject: [PATCH] Added GetPemLocation() git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@83 726aef4b-f618-498e-8847-2d620e286838 --- User.cpp | 1 + User.h | 1 + 2 files changed, 2 insertions(+) diff --git a/User.cpp b/User.cpp index 10149198..279c18f0 100644 --- a/User.cpp +++ b/User.cpp @@ -387,6 +387,7 @@ const string& CUser::GetCurPath() const { return m_pZNC->GetCurPath(); } const string& CUser::GetDLPath() const { return m_pZNC->GetDLPath(); } const string& CUser::GetModPath() const { return m_pZNC->GetModPath(); } const string& CUser::GetHomePath() const { return m_pZNC->GetHomePath(); } +string CUser::GetPemLocation() const { return m_pZNC->GetPemLocation(); } bool CUser::UseClientIP() const { return m_bUseClientIP; } bool CUser::KeepNick() const { return m_bKeepNick; } diff --git a/User.h b/User.h index b9c099da..bb39c0ef 100644 --- a/User.h +++ b/User.h @@ -85,6 +85,7 @@ public: const string& GetDLPath() const; const string& GetModPath() const; const string& GetHomePath() const; + string GetPemLocation() const; bool UseClientIP() const; bool KeepNick() const;