blob: 36374ae575fccd2caee43f89e9940444d6f0d42b [file] [log] [blame]
Chris Masone88cbd5f2011-07-03 14:30:04 -07001// Copyright (c) 2011 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 SHILL_DEFAULT_PROFILE_
6#define SHILL_DEFAULT_PROFILE_
7
8#include <string>
9#include <vector>
10
11#include <base/memory/scoped_ptr.h>
12
13#include "shill/manager.h"
14#include "shill/profile.h"
15#include "shill/property_store.h"
16#include "shill/refptr_types.h"
17#include "shill/shill_event.h"
18
19namespace shill {
20
21class ControlInterface;
22
23class DefaultProfile : public Profile {
24 public:
Chris Masone7156c922011-08-23 20:36:21 -070025 DefaultProfile(ControlInterface *control_interface,
Darin Petkova4766822011-07-07 10:42:22 -070026 GLib *glib,
Chris Masone6791a432011-07-12 13:23:19 -070027 Manager *manager,
Chris Masone88cbd5f2011-07-03 14:30:04 -070028 const Manager::Properties &manager_props);
29 virtual ~DefaultProfile();
30
31 private:
Chris Masone7df0c672011-07-15 10:24:54 -070032 static const char kDefaultId[];
33
Chris Masone88cbd5f2011-07-03 14:30:04 -070034 DISALLOW_COPY_AND_ASSIGN(DefaultProfile);
35};
36
37} // namespace shill
38
39#endif // SHILL_DEFAULT_PROFILE_