vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

cc.h (145B)


      1 #ifndef _H_
      2 #define _H_
      3 
      4 namespace foo {
      5 
      6 class Bar {
      7  public:
      8   Bar();
      9   ~Bar();
     10 
     11  private:
     12   int baz_;
     13 };
     14 
     15 }  // namespace foo
     16 
     17 #endif  // _H_