blob: 352f566da508bd34794d3d74d89dc7c8949bfb64 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MINIOS_RECOVERY_INSTALLER_INTERFACE_H_
#define MINIOS_RECOVERY_INSTALLER_INTERFACE_H_
namespace minios {
class RecoveryInstallerInterface {
public:
virtual ~RecoveryInstallerInterface() = default;
virtual bool RepartitionDisk() = 0;
};
} // namespace minios
#endif // MINIOS_RECOVERY_INSTALLER_INTERFACE_H_