MythTV  master
mythuilocation.h
Go to the documentation of this file.
1 #ifndef MYTHUILOCATION_H
2 #define MYTHUILOCATION_H
3 
4 // Qt
5 #include <QReadWriteLock>
6 #include <QStringList>
7 
8 // MythTV
9 #include "mythuiexp.h"
10 
12 {
13  public:
14  void AddCurrentLocation(const QString& Location);
15  QString RemoveCurrentLocation();
16  QString GetCurrentLocation(bool FullPath = false, bool MainStackOnly = true);
17 
18  private:
19  QReadWriteLock m_locationLock;
20  QStringList m_currentLocation;
21 };
22 
23 #endif
MythUILocation
Definition: mythuilocation.h:11
MUI_PUBLIC
#define MUI_PUBLIC
Definition: mythuiexp.h:9
MythUILocation::m_currentLocation
QStringList m_currentLocation
Definition: mythuilocation.h:20
MythUILocation::m_locationLock
QReadWriteLock m_locationLock
Definition: mythuilocation.h:19
mythuiexp.h