20 lines
		
	
	
	
		
			569 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			569 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								// Copyright (c) 2023 Salesforce, Inc.
							 | 
						||
| 
								 | 
							
								// Use of this source code is governed by the MIT license that can be
							 | 
						||
| 
								 | 
							
								// found in the LICENSE file.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#ifndef ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_TEMPLATE_H_
							 | 
						||
| 
								 | 
							
								#define ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_TEMPLATE_H_
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace v8 {
							 | 
						||
| 
								 | 
							
								class Isolate;
							 | 
						||
| 
								 | 
							
								template <typename T>
							 | 
						||
| 
								 | 
							
								class Local;
							 | 
						||
| 
								 | 
							
								class FunctionTemplate;
							 | 
						||
| 
								 | 
							
								}  // namespace v8
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace gin_helper::internal {
							 | 
						||
| 
								 | 
							
								v8::Local<v8::FunctionTemplate> GetEventEmitterTemplate(v8::Isolate* isolate);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif  // ELECTRON_SHELL_COMMON_GIN_HELPER_EVENT_EMITTER_TEMPLATE_H_
							 |