1 /* Copyright (c) 2021 Google LLC
2  * SPDX-License-Identifier: Apache-2.0
3  */
4 
5 #ifndef SAMPLES_APPLICATION_DEVELOPMENT_CHRE_INCLUDE_APPS_H_
6 #define SAMPLES_APPLICATION_DEVELOPMENT_CHRE_INCLUDE_APPS_H_
7 
8 #include "chre/core/nanoapp.h"
9 #include "chre/util/unique_ptr.h"
10 
11 namespace chre {
12 
13 UniquePtr<Nanoapp> initializeStaticNanoappEchoApp();
14 
15 }  /* namespace chre */
16 
17 #endif /* SAMPLES_APPLICATION_DEVELOPMENT_CHRE_INCLUDE_APPS_H_ */
18