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
QStringList m_currentLocation
QReadWriteLock m_locationLock
#define MUI_PUBLIC
Definition: mythuiexp.h:9