]> git.lyx.org Git - lyx.git/blob - src/insets/insetloa.C
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetloa.C
1 // -*- C++ -*-
2 /* This file is part of*
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *       
7  *          Copyright 1995 Matthias Ettrich
8  *          Copyright 1996-2000 The LyX Team.
9  * 
10  * ====================================================== */
11
12 // Created by Bernhard 970908
13
14 #include <config.h>
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include "insetloa.h"
21 #include "LaTeXFeatures.h"
22
23 void InsetLOA::Validate(LaTeXFeatures & features) const 
24 {
25         features.algorithm = true;
26 }
27
28
29 string InsetLOA::getScreenLabel() const 
30 {
31         return _("List of Algorithms");
32 }