cc_project_template_bazel

A Bazel, ninja, and googletest-based C++ project template
git clone https://git.bracken.jp/cc_project_template_bazel.git
Log | Files | Refs | README | LICENSE

bar.h (220B)


      1 #ifndef PROJNAME_BAR_H_
      2 #define PROJNAME_BAR_H_
      3 
      4 #include <string>
      5 
      6 #include "absl/strings/string_view.h"
      7 
      8 namespace foobar {
      9 
     10 std::string Bar(absl::string_view name);
     11 
     12 }  // namespace foobar
     13 
     14 #endif  // PROJNAME_BAR_H_