mirror of
https://github.com/JHUAPL/kami.git
synced 2026-01-10 07:17:58 -05:00
This is based on GavinNL/cpp_library_template, which seems to be a bit closer to meeting my needs.
9 lines
89 B
C++
9 lines
89 B
C++
#include <foo/cat/cat.h>
|
|
|
|
int main()
|
|
{
|
|
foo::cat C;
|
|
C.call_bar();
|
|
return 0;
|
|
}
|