mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-02 14:01:10 +00:00
de-boostification
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21561 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a145538ba1
commit
36136efb78
@ -17,8 +17,6 @@
|
|||||||
#include "frontends/Delegates.h"
|
#include "frontends/Delegates.h"
|
||||||
#include "support/docstring.h"
|
#include "support/docstring.h"
|
||||||
|
|
||||||
#include <boost/noncopyable.hpp>
|
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
@ -51,8 +49,8 @@ class WorkArea;
|
|||||||
* Additionally we would like to support multiple views
|
* Additionally we would like to support multiple views
|
||||||
* in a single LyXView.
|
* in a single LyXView.
|
||||||
*/
|
*/
|
||||||
class LyXView : boost::noncopyable,
|
class LyXView
|
||||||
public GuiBufferViewDelegate, public GuiBufferDelegate
|
: public GuiBufferViewDelegate, public GuiBufferDelegate
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
@ -196,6 +194,10 @@ public:
|
|||||||
void disconnectBuffer();
|
void disconnectBuffer();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
/// noncopyable
|
||||||
|
LyXView(LyXView const &);
|
||||||
|
void operator=(LyXView const &);
|
||||||
|
|
||||||
/// called on timeout
|
/// called on timeout
|
||||||
void autoSave();
|
void autoSave();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user