]> git.lyx.org Git - features.git/blob - src/mathed/math_splitinset.h
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_splitinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_splitinset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_SPLITINSET_H
13 #define MATH_SPLITINSET_H
14
15 #include "math_gridinset.h"
16 #include "support/std_string.h"
17
18
19 class MathSplitInset : public MathGridInset {
20 public:
21         ///
22         explicit MathSplitInset(string const & name);
23         ///
24         virtual std::auto_ptr<InsetBase> clone() const;
25         ///
26         void write(WriteStream & os) const;
27         ///
28         int defaultColSpace(col_type) { return 0; }
29         ///
30         char defaultColAlign(col_type);
31 private:
32         ///
33         string name_;
34 };
35
36 #endif