mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
23 lines
325 B
C
23 lines
325 B
C
|
// -*- C++ -*-
|
||
|
#ifndef MATH_ARRAYINSET_H
|
||
|
#define MATH_ARRAYINSET_H
|
||
|
|
||
|
#include "math_grid.h"
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma interface
|
||
|
#endif
|
||
|
|
||
|
|
||
|
class MathArrayInset : public MathGridInset {
|
||
|
public:
|
||
|
///
|
||
|
MathArrayInset(int m, int n);
|
||
|
///
|
||
|
MathInset * Clone() const;
|
||
|
///
|
||
|
void Write(std::ostream &, bool fragile) const;
|
||
|
};
|
||
|
|
||
|
#endif
|