Adam Snaider | c8b7e75 | 2023-09-14 14:27:53 -0700 | [diff] [blame] | 1 | #ifndef AOS_IPC_LIB_SHM_BASE_H_ |
2 | #define AOS_IPC_LIB_SHM_BASE_H_ | ||||
3 | |||||
Stephan Pleines | 682928d | 2024-05-31 20:43:48 -0700 | [diff] [blame^] | 4 | #include <string_view> |
5 | |||||
Adam Snaider | c8b7e75 | 2023-09-14 14:27:53 -0700 | [diff] [blame] | 6 | #include "gflags/gflags.h" |
7 | |||||
8 | DECLARE_string(shm_base); | ||||
9 | |||||
10 | namespace aos::testing { | ||||
11 | void SetShmBase(const std::string_view base); | ||||
12 | } | ||||
13 | #endif // AOS_IPC_LIB_SHM_BASE_H_ |