Fork of the official mbed C/C++ SDK provides the software platform and libraries to build your applications. The fork has the documentation converted to Doxygen format

Dependents:   NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more

Fork of mbed by mbed official

Stream.h

Committer:
simon.ford@mbed.co.uk
Date:
2008-04-08
Revision:
0:82220227f4fa
Child:
1:6b7f447ca868

File content as of revision 0:82220227f4fa:

/* mbed Microcontroller Library - Stream
 * Copyright (c) 2007-2008, sford
 */

#ifndef MBED_STREAM_H
#define MBED_STREAM_H

#include "Base.h"

namespace mbed {

class Stream : public Base {

public:

	Stream();

	int putc(int c);
	int getc();
    int printf(const char* format, ...);
    int scanf(const char* format, ...);

	int _backspace();
	
protected:

	virtual int _putc(int c) = 0;
	virtual int _getc() = 0;

	int _back;
	int _last;
	
};

} // namespace mbed

#endif