]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.C
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_casesinset.C
index 5d992788c1a8a0253fa2a37b99e7b22e71425d4f..be93fe8f2c21f2bd868f3361a2917166862c688d 100644 (file)
@@ -5,6 +5,7 @@
 #include "math_parser.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
+#include "LaTeXFeatures.h"
 #include "support/LOstream.h"
 
 
@@ -65,3 +66,10 @@ void MathCasesInset::infoize(std::ostream & os) const
 {
        os << "Cases ";
 }
+
+
+void MathCasesInset::validate(LaTeXFeatures & features) const
+{
+       features.require("amsmath");
+       MathGridInset::validate(features);
+}