blob: 827d04837741dab069b50ee0fc129bd6a172edba [file] [log] [blame]
Paul Stewartfdd16072011-09-16 12:41:35 -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_TECHNOLOGY_
6#define SHILL_TECHNOLOGY_
7
8#include <string>
9
10namespace shill {
11
12class Technology {
13 public:
14 enum Identifier {
15 kEthernet,
16 kWifi,
Paul Stewart2001a422011-12-15 10:20:09 -080017 kWiFiMonitor,
Paul Stewartfdd16072011-09-16 12:41:35 -070018 kCellular,
19 kBlacklisted,
20 kUnknown,
Paul Stewartfdd16072011-09-16 12:41:35 -070021 };
22
23 static Identifier IdentifierFromName(const std::string &name);
24 static std::string NameFromIdentifier(Identifier id);
25
26 private:
27 static const char kUnknownName[];
28};
29
30} // namespace shill
31
32#endif // SHILL_TECHNOLOGY_