* 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
23 lines
460 B
C++
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
|