blob: 1e2b7a47154f72db2b49be6477a7ed2a390e1d22 [file] [log] [blame]
John Park398c74a2018-10-20 21:17:39 -07001#ifndef AOS_INIT_H_
2#define AOS_INIT_H_
brians343bc112013-02-10 01:53:46 +00003
4namespace aos {
5
Austin Schuh094d09b2020-11-20 23:26:52 -08006// Initializes AOS.
Alex Perrycb7da4b2019-08-28 19:35:56 -07007void InitGoogle(int *argc, char ***argv);
8
Austin Schuh094d09b2020-11-20 23:26:52 -08009// Returns true if we have been initialized. This is mostly here so
10// ShmEventLoop can confirm the world was initialized before running.
11bool IsInitialized();
Brian Silvermane4d8b282015-12-24 13:44:48 -080012
brians343bc112013-02-10 01:53:46 +000013} // namespace aos
14
John Park398c74a2018-10-20 21:17:39 -070015#endif // AOS_INIT_H_