13 lines
		
	
	
		
			359 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			359 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*********************************************************************
 | |
| * Copyright (c) Intel Corporation 2019 - 2020
 | |
| * SPDX-License-Identifier: Apache-2.0
 | |
| **********************************************************************/
 | |
| 
 | |
| #ifndef __HEARTBEAT_H__
 | |
| #define __HEARTBEAT_H__
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| bool heartbeat_create_response(std::string& response);
 | |
| 
 | |
| #endif  |