mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
132fe5e132
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@594 a592a061-630c-0410-9148-cb99ea01b6c8
31 lines
671 B
C
31 lines
671 B
C
// -*- 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 <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "insetloa.h"
|
|
#pragma implementation "insetlof.h"
|
|
#pragma implementation "insetlot.h"
|
|
#endif
|
|
|
|
#include "insetloa.h"
|
|
#include "insetlof.h"
|
|
#include "insetlot.h"
|
|
#include "LaTeXFeatures.h"
|
|
|
|
void InsetLOA::Validate(LaTeXFeatures & features) const
|
|
{
|
|
features.algorithm = true;
|
|
}
|