blob: b46126e4fd9c5a3a3b1289afcab930147cc01b55 [file] [log] [blame]
Alex Deymo2de23f52014-02-26 14:30:13 -08001// Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_REAL_STATE_H
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_REAL_STATE_H
7
8#include "update_engine/policy_manager/state.h"
9
10namespace chromeos_policy_manager {
11
12// State implementation class.
13class RealState : public State {
14 public:
15 RealState();
16 ~RealState() {}
17
18 private:
19 DISALLOW_COPY_AND_ASSIGN(RealState);
20};
21
22} // namespace chromeos_policy_manager
23
24#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_REAL_STATE_H