blob: 07af8b4daaab71a8c0fb03d9099dd17f85f4212d [file] [log] [blame]
// Copyright (c) 2011 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.
#include <time.h>
#include <stdio.h>
#include <string>
#include <base/logging.h>
#include "shill/control_interface.h"
#include "shill/service.h"
#include "shill/service_dbus_adaptor.h"
using std::string;
namespace shill {
Service::Service(ControlInterface *control_interface,
EventDispatcher */* dispatcher */,
Device *device)
: available_(false),
configured_(false),
auto_connect_(false),
configuration_(NULL),
connection_(NULL),
device_(device),
adaptor_(control_interface->CreateServiceAdaptor(this)) {
// Initialize Interface montior, so we can detect new interfaces
VLOG(2) << "Service initialized.";
}
Service::~Service() {
delete(adaptor_);
}
} // namespace shill