mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
71f8ac34a9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1095 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
789 B
C++
46 lines
789 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1998 The LyX Team.
|
|
*
|
|
*======================================================
|
|
*/
|
|
// The pristine updatable inset: Text
|
|
|
|
|
|
#ifndef INSETFOOT_H
|
|
#define INSETFOOT_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetfootlike.h"
|
|
|
|
/** The footnote inset
|
|
|
|
*/
|
|
class InsetFoot : public InsetFootlike {
|
|
public:
|
|
///
|
|
InsetFoot();
|
|
///
|
|
Inset * Clone(Buffer const &) const;
|
|
///
|
|
Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
|
|
///
|
|
int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
|
|
///
|
|
string const EditMessage() const;
|
|
///
|
|
bool InsertInsetAllowed(Inset * inset) const;
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|