mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
8b7b3a5895
- make all cache variables mutable, remove const_casts git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2426 a592a061-630c-0410-9148-cb99ea01b6c8
25 lines
373 B
C++
25 lines
373 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_ARRAYINSET_H
|
|
#define MATH_ARRAYINSET_H
|
|
|
|
#include "math_gridinset.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;
|
|
///
|
|
bool isArray() const { return true; }
|
|
};
|
|
|
|
#endif
|