Line | Branch | Exec | Source |
---|---|---|---|
1 | /** | ||
2 | * @file sys.Call.cpp | ||
3 | * @author Sergey Baigudin, sergey@baigudin.software | ||
4 | * @copyright 2014-2021, Sergey Baigudin, Baigudin Software | ||
5 | */ | ||
6 | #include "sys.Call.hpp" | ||
7 | #include "sys.System.hpp" | ||
8 | |||
9 | namespace eoos | ||
10 | { | ||
11 | namespace sys | ||
12 | { | ||
13 | |||
14 | 1298 | api::System& Call::get() | |
15 | { | ||
16 | 1298 | return System::getSystem(); | |
17 | } | ||
18 | |||
19 | } // namespace sys | ||
20 | } // namespace eoos | ||
21 |