Compiler Error 256

Common error caused by including a header multiple times without header guard. Try to use something like that in header:

add this to header

#ifndef CHANGEME_H_
#define CHANGEME_H_

.....header contents

 #endif

All wikipages