File: wxConfigPath.cpp

package info (click to toggle)
wxastrocapture 1.8.1%2Bgit20140821.796e1a1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 42,212 kB
  • sloc: cpp: 43,421; sh: 733; perl: 246; makefile: 14
file content (25 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "wxConfigPath.h"


wxConfigPath::wxConfigPath(wxConfig* config,const wxString& newPath)
: m_config(config)
{
   m_oldPath = m_config->GetPath();
   m_config->SetPath(newPath);
}

wxConfigPath::~wxConfigPath()
{
   m_config->SetPath(m_oldPath);
}


wxString wxConfigPath::OldPath() const
{
   return m_oldPath;
}

wxString wxConfigPath::GetPath() const
{
   return m_config->GetPath();
}