Collections of BERTL libraries

class_software.h

Committer:
DongExpander
Date:
2016-04-18
Revision:
2:4a9ed5ca8a9a

File content as of revision 2:4a9ed5ca8a9a:

#ifndef class_software

#define MAX_LOG 100

#define class_software

class Logfile {
//functions
	public:
		Logfile();
		Logfile(int lenght);
		void push(unsigned char input);
		unsigned char last();
		unsigned char at(int pos);
	//variables
	private:
		unsigned char array[MAX_LOG];
		int array_lenght;
};

#endif