LyXView: make it a pure virtual interface.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31458 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2009-09-23 19:51:55 +00:00
parent 783ba31467
commit bfa58b211f

View File

@ -44,8 +44,6 @@ namespace frontend {
class LyXView
{
public:
///
LyXView() {}
///
virtual ~LyXView() {}
@ -86,11 +84,6 @@ public:
/// even though the cursor moved. The update flags of \c cur might
/// be changed.
virtual void updateCompletion(Cursor & cur, bool start, bool keep) = 0;
private:
/// noncopyable
LyXView(LyXView const &);
void operator=(LyXView const &);
};
} // namespace frontend