mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			383 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			383 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| class Encoder;
 | |
| class Decoder;
 | |
| class DecoderProto;
 | |
| class EncoderProto;
 | |
| class Config;
 | |
| 
 | |
| namespace Arch
 | |
| {
 | |
|     std::unique_ptr<Decoder> createDecoder(Config& config);
 | |
|     std::unique_ptr<Decoder> createDecoder(const DecoderProto& config);
 | |
| 
 | |
|     std::unique_ptr<Encoder> createEncoder(Config& config);
 | |
|     std::unique_ptr<Encoder> createEncoder(const EncoderProto& config);
 | |
| }
 |