-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the dual computer setup functionality (#49)
- Loading branch information
1 parent
32e3678
commit 531dab4
Showing
13 changed files
with
734 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef AIRGAPPED_FLOW_HPP | ||
#define AIRGAPPED_FLOW_HPP | ||
|
||
class ArgParser; | ||
|
||
namespace airgapped_flow { | ||
void launch(const ArgParser& arg_parser); | ||
} // namespace airgapped_flow | ||
|
||
#endif // AIRGAPPED_FLOW_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef COMPLETE_FLOW_HPP | ||
#define COMPLETE_FLOW_HPP | ||
|
||
class ArgParser; | ||
|
||
namespace complete_flow { | ||
void launch(const ArgParser& arg_parser); | ||
} // namespace complete_flow | ||
|
||
#endif // COMPLETE_FLOW_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef INTERNET_FLOW_HPP | ||
#define INTERNET_FLOW_HPP | ||
|
||
class ArgParser; | ||
|
||
namespace internet_flow { | ||
void launch(const ArgParser& arg_parser); | ||
} // namespace internet_flow | ||
|
||
#endif // INTERNET_FLOW_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.