1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of*
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
1999-11-04 01:40:20 +00:00
|
|
|
* Copyright (C) 1995 Matthias Ettrich
|
|
|
|
* Copyright (C) 1996-1999 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-04 01:40:20 +00:00
|
|
|
* ======================================================*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Created by Bernhard 970908
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation "insetloa.h"
|
|
|
|
#pragma implementation "insetlof.h"
|
|
|
|
#pragma implementation "insetlot.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
#include "insetloa.h"
|
|
|
|
#include "insetlof.h"
|
|
|
|
#include "insetlot.h"
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetLOA::Validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
features.algorithm = true;
|
|
|
|
}
|