Make WorkArea a pure virtual interface.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31534 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2009-10-05 21:39:23 +00:00
parent ea0cac6e7b
commit 8661b320ce

View File

@ -34,8 +34,6 @@ namespace frontend {
class WorkArea
{
public:
///
WorkArea() : lyx_view_(0) {}
///
virtual ~WorkArea() {}
@ -50,10 +48,6 @@ public:
/// Update window titles of all users.
virtual void updateWindowTitle() = 0;
private:
LyXView * lyx_view_;
};
} // namespace frontend