blob: 026a1323a2ed49f051cc7002bf73961f81809c53 [file] [log] [blame]
// Copyright 2015 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 SOMA_SYSFS_FILTER_H_
#define SOMA_SYSFS_FILTER_H_
#include <base/files/file_path.h>
namespace soma {
class SysfsFilter {
public:
explicit SysfsFilter(const base::FilePath& path);
virtual ~SysfsFilter();
private:
const base::FilePath filter_;
DISALLOW_COPY_AND_ASSIGN(SysfsFilter);
};
} // namespace soma
#endif // SOMA_SYSFS_FILTER_H_