refactor: restructure project to build a library for each book chapter
This commit is contained in:
parent
5a3798a604
commit
dfaee89d56
11 changed files with 15 additions and 6 deletions
5
chapters/chapter_02/include/constexp.h
Normal file
5
chapters/chapter_02/include/constexp.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
namespace constexp {
|
||||
void test();
|
||||
};
|
7
chapters/chapter_02/include/ifswitch.h
Normal file
7
chapters/chapter_02/include/ifswitch.h
Normal file
|
@ -0,0 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
namespace ifswitch {
|
||||
|
||||
void test();
|
||||
|
||||
};
|
5
chapters/chapter_02/include/initlist.h
Normal file
5
chapters/chapter_02/include/initlist.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
namespace initlist {
|
||||
void test();
|
||||
};
|
5
chapters/chapter_02/include/null.h
Normal file
5
chapters/chapter_02/include/null.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
namespace null {
|
||||
void test();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue