#ifndef ASH_PUBLIC_CPP_ASSISTANT_CONTROLLER_ASSISTANT_SUGGESTIONS_CONTROLLER_H_
#define ASH_PUBLIC_CPP_ASSISTANT_CONTROLLER_ASSISTANT_SUGGESTIONS_CONTROLLER_H_
#include "ash/public/cpp/ash_public_export.h"
namespace ash {
class AssistantSuggestionsModel;
class ASH_PUBLIC_EXPORT AssistantSuggestionsController {
public:
static AssistantSuggestionsController* Get();
virtual const AssistantSuggestionsModel* GetModel() const = 0;
protected:
AssistantSuggestionsController();
virtual ~AssistantSuggestionsController();
};
}
#endif