mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
39 lines
647 B
C++
39 lines
647 B
C++
/**
|
|
* \file MathAtom.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "MathAtom.h"
|
|
#include "InsetMath.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
|
|
MathAtom::MathAtom(InsetMath * p)
|
|
: nucleus_(p)
|
|
{}
|
|
|
|
|
|
MathAtom::MathAtom(MathAtom const & at)
|
|
: nucleus_(at.nucleus_ ? static_cast<InsetMath*>(at->clone()) : nullptr)
|
|
{}
|
|
|
|
|
|
MathAtom & MathAtom::operator=(MathAtom const & at)
|
|
{
|
|
// copy then move-assign
|
|
return operator=(MathAtom(at));
|
|
}
|
|
|
|
|
|
} // namespace lyx
|