16 lines
		
	
	
		
			205 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			205 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef GIGATRON_H
 | 
						|
#define GIGATRON_H
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
#include <map>
 | 
						|
 | 
						|
 | 
						|
namespace Gigatron
 | 
						|
{
 | 
						|
    using GigaEquate = const std::map<std::string, uint16_t>;
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |