lyx_mirror/src/support/Changer.h

35 lines
612 B
C
Raw Normal View History

// -*- 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() {}
};
2016-06-14 18:22:24 +00:00
//for gcc 4.6
//using Changer = unique_ptr<Revertible>;
typedef unique_ptr<Revertible> Changer;
}
#endif //LYX_CHANGER_H