#ifndef ASH_USER_EDUCATION_USER_EDUCATION_FEATURE_CONTROLLER_H_
#define ASH_USER_EDUCATION_USER_EDUCATION_FEATURE_CONTROLLER_H_
#include "ash/ash_export.h"
namespace ash {
class ASH_EXPORT UserEducationFeatureController {
public:
UserEducationFeatureController(const UserEducationFeatureController&) =
delete;
UserEducationFeatureController& operator=(
const UserEducationFeatureController&) = delete;
virtual ~UserEducationFeatureController();
protected:
UserEducationFeatureController();
};
}
#endif