mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			253 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			253 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Arduino JSON library
 | 
						|
 * Benoit Blanchon 2014 - MIT License
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#ifndef ARDUINO
 | 
						|
 | 
						|
class Print;
 | 
						|
 | 
						|
class Printable
 | 
						|
{
 | 
						|
public:
 | 
						|
 | 
						|
    virtual size_t printTo(Print& p) const = 0;
 | 
						|
};
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
#include <Printable.h>
 | 
						|
 | 
						|
#endif
 | 
						|
 |