mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
35 lines
612 B
C++
35 lines
612 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Changer.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Guillaume Munch
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYX_CHANGER_H
|
|
#define LYX_CHANGER_H
|
|
|
|
#include "support/unique_ptr.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
// Forward declaration for support/RefChanger.h
|
|
struct Revertible {
|
|
virtual ~Revertible() {}
|
|
virtual void revert() {}
|
|
virtual void keep() {}
|
|
};
|
|
|
|
//for gcc 4.6
|
|
//using Changer = unique_ptr<Revertible>;
|
|
typedef unique_ptr<Revertible> Changer;
|
|
|
|
|
|
}
|
|
|
|
#endif //LYX_CHANGER_H
|