#ifndef COURSE_EDITOR #define COURSE_EDITOR #include <441/include/std-macros.h> #include <441/include/fulltexteditor.h> class CourseEditor : public FullTextEditor { public: CourseEditor (int, int) ; // Construct with given number of rows protected: virtual void Handle (Event& e) ; } ; #endif