blob: 748c8e24b9699bd3bf7b6c62c4e2e2c1504abc31 [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 RMAD_SYSTEM_POWER_MANAGER_CLIENT_H_
#define RMAD_SYSTEM_POWER_MANAGER_CLIENT_H_
namespace rmad {
class PowerManagerClient {
public:
PowerManagerClient() = default;
virtual ~PowerManagerClient() = default;
virtual bool Restart() = 0;
virtual bool Shutdown() = 0;
};
} // namespace rmad
#endif // RMAD_SYSTEM_POWER_MANAGER_CLIENT_H_