#include "stdafx.h" #include "BookBase.h" namespace DuiLib{ BookBase::BookBase(void) { m_img_singlePage = L""; m_img_doublePage = L""; } BookBase::~BookBase(void) { } BOOL BookBase::SetClickLineNotify(ClickLineNotify* notify) { this->m_clickLineNotify = notify; return TRUE; } bool BookBase::Create( HINSTANCE hInstance, HWND hParent, RECT rc ) { return true; } int BookBase::Open( lString16 filename ,char* Pwd) { m_book_name.Format(_T("%s"), filename.c_str()); return true; } }