// -*- C++ -*- /* This file is part of* * ====================================================== * * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich * Copyright 1996-2000 The LyX Team. * * ====================================================== */ // Created by Bernhard 970908 #include #ifdef __GNUG__ #pragma implementation #endif #include "insetloa.h" #include "LaTeXFeatures.h" void InsetLOA::Validate(LaTeXFeatures & features) const { features.algorithm = true; } string InsetLOA::getScreenLabel() const { return _("List of Algorithms"); }