blob: 2578c1b7e90b9ec1f8b1f011edabe6877c7a3d5d [file] [log] [blame]
// Copyright 2018 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_SHILL_CONFIG_H_
#define SHILL_SHILL_CONFIG_H_
#include <string>
namespace shill {
class Config {
public:
Config();
Config(const Config&) = delete;
Config& operator=(const Config&) = delete;
virtual ~Config();
virtual std::string GetRunDirectory() const;
virtual std::string GetStorageDirectory() const;
virtual std::string GetUserStorageDirectory() const;
};
} // namespace shill
#endif // SHILL_SHILL_CONFIG_H_