Files
Sourcetrail/src/lib/component/view/ScreenSearchView.h
T
mlangkabel dfc6d88432 build: search headers in all source directories
* removed paths in include directives
* changed cmake to provide necessary header search paths
* changed name of version.h to productVersion.h due to name conflict
2018-09-18 19:00:18 +02:00

23 lines
460 B
C++

#ifndef SCREEN_SEARCH_VIEW_H
#define SCREEN_SEARCH_VIEW_H
#include "View.h"
class ScreenSearchView
: public View
{
public:
ScreenSearchView(ViewLayout* viewLayout);
virtual ~ScreenSearchView();
// View implementation
virtual std::string getName() const;
virtual void setMatchCount(size_t matchCount) = 0;
virtual void setMatchIndex(size_t matchIndex) = 0;
virtual void addResponder(const std::string& name) = 0;
};
#endif // SCREEN_SEARCH_VIEW_H