David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
56e9725
Branches
Tags
c++11
main
start
testcode.git
include
my_lib.hpp
Add .clang-format
dblume
commited
56e9725
at 2023-08-12 23:24:26
my_lib.hpp
Blame
History
Raw
#ifndef __my_lib_hpp #define __my_lib_hpp #define MY_LIB_DEFINE 0 namespace MY_LIB { class my_lib_rect { int width_, height_; public: my_lib_rect(int width, int height); virtual int area() const; }; int my_lib_fn(); int my_lib_fn(int x); } // namespace MY_LIB #endif