Expose CppModelManagerInterface::workingCopy()

This commit is contained in:
Roberto Raggi
2009-10-12 10:38:00 +02:00
parent db14533928
commit 420b09e8c2
5 changed files with 16 additions and 9 deletions

View File

@@ -43,16 +43,16 @@ namespace Find {
} // end of namespace Find
namespace CppTools {
namespace Internal {
class CppModelManagerInterface;
class CppModelManager;
namespace Internal {
class CppFindReferences: public QObject
{
Q_OBJECT
public:
CppFindReferences(CppModelManager *modelManager);
CppFindReferences(CppModelManagerInterface *modelManager);
virtual ~CppFindReferences();
QList<int> references(CPlusPlus::Symbol *symbol,
@@ -76,7 +76,7 @@ private:
void findAll_helper(CPlusPlus::Symbol *symbol);
private:
QPointer<CppModelManager> _modelManager;
QPointer<CppModelManagerInterface> _modelManager;
Find::SearchResultWindow *_resultWindow;
QFutureWatcher<Utils::FileSearchResult> m_watcher;
};