summaryrefslogtreecommitdiff
path: root/src/search/SearchModel.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-19 13:44:59 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-19 13:44:59 (GMT)
commit44639a6423c03552a3c0faafab27ef8f395f73a6 (patch)
tree1a4fc49a56060759fcbec6f18e9159cf126e8606 /src/search/SearchModel.h
parent4a60b97c700c2f1843b7e99313554cb89fb5da4e (diff)
downloadpowder-44639a6423c03552a3c0faafab27ef8f395f73a6.zip
powder-44639a6423c03552a3c0faafab27ef8f395f73a6.tar.gz
Some folder changes, started search and client
Diffstat (limited to 'src/search/SearchModel.h')
-rw-r--r--src/search/SearchModel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/search/SearchModel.h b/src/search/SearchModel.h
index 0951577..85d4177 100644
--- a/src/search/SearchModel.h
+++ b/src/search/SearchModel.h
@@ -7,6 +7,7 @@
using namespace std;
+class SearchView;
class SearchModel
{
private:
@@ -15,7 +16,7 @@ private:
void notifySaveListChanged();
public:
SearchModel();
- void AddObserver(SearchView * observer){ observers.push_back(observer); }
+ void AddObserver(SearchView * observer);
void UpdateSaveList();
vector<Save> GetSaveList();
};