lyx_mirror/src/mathed/InsetMathDiagram.h
Vincent van Ravesteijn 77292f028d Remove unimplemented function declaration.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37630 a592a061-630c-0410-9148-cb99ea01b6c8
2011-02-13 10:02:00 +00:00

59 lines
1.0 KiB
C++

// -*- C++ -*-
/**
* \file InsetMathDiagram.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
* \author Ronen Abravanel
*
* Full author contact details are available in file CREDITS.
*/
#ifndef MATH_DIAGRAM_H
#define MATH_DIAGRAM_H
#include "Length.h"
#include "InsetMathGrid.h"
namespace lyx {
class InsetMathDiagram : public InsetMathGrid {
public:
///
InsetMathDiagram(Buffer * buf);
///
void metrics(MetricsInfo &, Dimension &) const;
///
InsetMathDiagram const * asDiagramInset() const { return this; }
///
virtual int colsep() const;
///
virtual int rowsep() const;
///
void write(WriteStream & os) const;
///
void infoize(odocstream & os) const;
///
void normalize(NormalStream &) const;
///
void maple(MapleStream &) const;
///
void validate(LaTeXFeatures & features) const;
///
InsetCode lyxCode() const { return MATH_DIAGRAM_CODE; }
private:
///
virtual Inset * clone() const;
};
} // namespace lyx
#endif