blob: 95cacbc5595a0fd5bec7fee78e905e7abf7a8d98 [file] [log] [blame]
// Copyright (c) 2012 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 SHILL_VPN_DRIVER_
#define SHILL_VPN_DRIVER_
#include <base/basictypes.h>
namespace shill {
class Error;
class VPNDriver {
public:
virtual ~VPNDriver() {}
virtual void Connect(Error *error) = 0;
};
} // namespace shill
#endif // SHILL_VPN_DRIVER_