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

foo.h (137B)


      1 #ifndef PROJNAME_FOO_H_
      2 #define PROJNAME_FOO_H_
      3 
      4 namespace foobar {
      5 
      6 int Foo(int x);
      7 
      8 }  // namespace foobar
      9 
     10 #endif  // PROJNAME_FOO_H_