David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
de73d20
Branches
Tags
c++11
main
start
testcode.git
include
my_lib.hpp
Make ctags and cscope more compatible.
David Blume
commited
de73d20
at 2017-12-30 13:35:25
my_lib.hpp
Blame
History
Raw
#ifndef __my_lib_hpp #define __my_lib_hpp #define MY_LIB_DEFINE 0 class my_lib_rect { int width_, height_; public: my_lib_rect(int width, int height); int area() const; }; int my_lib_fn(); int my_lib_fn(int x); #endif