#ifndef CORRESPONDENCE_H #define CORRESPONDENCE_H // // YOU ARE FREE TO MODIFY THIS FILE IN ANY WAY THAT YOU WIsH // #include #include "Document.h" class Correspondence : public Document { public: // YOU ARE ENCOURAGED TO CHANGE THIS: Correspondence(int type, int aID, std::string author, std::string textBody); private: }; #endif