/*
* Licence: LGPL
* Autor: Gilhad
*/
#ifndef EXAMPLE_LIB_H
#define EXAMPLE_LIB_H
#include "logging.h"
class example_lib{
public:
example_lib(logger &l,const char *name); // constructor
void begin();
void doit(int i); // try it on your fingers ...
private:
const char *param;
logger &l;
};
#endif