/home/stefa/Projects/C++/evstevemd/Additions.h|7|error: expected class-name before ‘{’ token|
/home/stefa/Projects/C++/evstevemd/Additions.h|9|error: expected ‘)’ before ‘parent’|
||=== Build finished: 2 errors, 0 warnings ===|
Here is the file. Cpp file is empty. There is something wrong with My class and inheritance knowledge. What is wrong?
thanks
#ifndef ADDITIONS_H
#define ADDITIONS_H
#include <wx/panel.h>
#include <wx/notebook.h>
class AdditionalWindows: public wxNoteBook{
public:
AdditionalWindows(*wxWindow parent);
private:
//make panels and return newly made panel
//wxPanel OnMakePanel();
DECLARE_EVENT_TABLE()
};
#endif //ADDITIONS_H