blob: 72efd4ae00fe649554f80efbf0377904eb9215b6 [file] [log] [blame]
Darin Petkovdaf43862011-10-27 11:37:28 +02001// 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_CELLULAR_CAPABILITY_GSM_
6#define SHILL_CELLULAR_CAPABILITY_GSM_
7
8#include "shill/cellular_capability.h"
9
10namespace shill {
11
12class CellularCapabilityGSM : public CellularCapability {
13 public:
14 CellularCapabilityGSM(Cellular *cellular);
15
16 // Inherited from CellularCapability;
17 virtual void InitProxies();
18
19 private:
20 DISALLOW_COPY_AND_ASSIGN(CellularCapabilityGSM);
21};
22
23} // namespace shill
24
25#endif // SHILL_CELLULAR_CAPABILITY_GSM_