Files
qt-creator/src/plugins/qmljsinspector/qmljscontextcrumblepath.h

28 lines
547 B
C
Raw Normal View History

#ifndef QMLJSCONTEXTCRUMBLEPATH_H
#define QMLJSCONTEXTCRUMBLEPATH_H
#include <utils/crumblepath.h>
#include <QStringList>
namespace QmlJSInspector {
namespace Internal {
class ContextCrumblePath : public Utils::CrumblePath
{
Q_OBJECT
public:
ContextCrumblePath(QWidget *parent = 0);
virtual ~ContextCrumblePath();
bool isEmpty() const;
public slots:
void updateContextPath(const QStringList &path);
private:
bool m_isEmpty;
};
} // namespace Internal
} // namespace QmlJSInspector
#endif // QMLJSCONTEXTCRUMBLEPATH_H