2003-08-19 13:00:56 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-04-25 16:11:45 +00:00
|
|
|
|
* \file ReplaceData.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-11-16 11:24:55 +00:00
|
|
|
|
#ifndef MATH_REPLACE_H
|
|
|
|
|
#define MATH_REPLACE_H
|
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2007-04-26 16:05:57 +00:00
|
|
|
|
#include "MathData.h"
|
2001-11-16 11:24:55 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class ReplaceData {
|
|
|
|
|
public:
|
2001-11-16 11:24:55 +00:00
|
|
|
|
///
|
2007-04-26 16:05:57 +00:00
|
|
|
|
MathData from;
|
2001-11-16 11:24:55 +00:00
|
|
|
|
///
|
2007-04-26 16:05:57 +00:00
|
|
|
|
MathData to;
|
2001-11-16 11:24:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2001-11-16 11:24:55 +00:00
|
|
|
|
#endif
|