blob: 9c35f5ebad83a6674a2dc0aae3bd375210f45134 [file] [log] [blame]
// Copyright 2014 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 CHROMEOS_DBUS_BINDINGS_METHOD_NAME_GENERATOR_H_
#define CHROMEOS_DBUS_BINDINGS_METHOD_NAME_GENERATOR_H_
#include <string>
#include <vector>
namespace base {
class FilePath;
} // namespace base
namespace chromeos_dbus_bindings {
struct Interface;
class MethodNameGenerator {
public:
MethodNameGenerator(const MethodNameGenerator&) = delete;
MethodNameGenerator& operator=(const MethodNameGenerator&) = delete;
static bool GenerateMethodNames(const std::vector<Interface>& interfaces,
const base::FilePath& output_file);
private:
friend class MethodNameGeneratorTest;
};
} // namespace chromeos_dbus_bindings
#endif // CHROMEOS_DBUS_BINDINGS_METHOD_NAME_GENERATOR_H_