blob: 10a2b4acd1ddcfd3db5f1491eca8a90e28504c1d [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.
#ifndef SHILL_ENDPOINT_H_
#define SHILL_ENDPOINT_H_
#include <base/memory/ref_counted.h>
namespace shill {
class Endpoint;
class Endpoint : public base::RefCounted<Endpoint> {
public:
Endpoint();
virtual ~Endpoint();
private:
DISALLOW_COPY_AND_ASSIGN(Endpoint);
};
} // namespace shill
#endif // SHILL_ENDPOINT_H_