#include #include "Document.h" using namespace std; Document::Document() { } Document::Document(int type, int aID, string author, string textBody) : m_type(type), m_ID(aID), m_author(author), m_textBody(textBody) { } int Document::GetType() { return m_type; } int Document::GetID() { return m_ID; } string Document::GetAuthor() { return m_author; } string Document::GetBody() { return m_textBody; }