blob: 8353049078e423f1365e1bcba2b2131e131fd597 [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>
#include <base/macros.h>
namespace shill {
class Config {
public:
Config();
virtual ~Config();
virtual std::string GetRunDirectory() const;
virtual std::string GetStorageDirectory() const;
virtual std::string GetUserStorageDirectory() const;
private:
DISALLOW_COPY_AND_ASSIGN(Config);
};
} // namespace shill
#endif // SHILL_SHILL_CONFIG_H_