lyx_mirror/src/insets/insetfootlike.h
Jürgen Vigna 487f6eb3b4 Added various inset functions for Jean-Marc (see Changelog). Small fix in
cua bind-file.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2228 a592a061-630c-0410-9148-cb99ea01b6c8
2001-07-12 14:35:38 +00:00

45 lines
756 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1998 The LyX Team.
*
*======================================================
*/
// The pristine updatable inset: Text
#ifndef InsetFootlike_H
#define InsetFootlike_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insetcollapsable.h"
// To have this class is probably a bit overkill... (Lgb)
/** The footnote inset
*/
class InsetFootlike : public InsetCollapsable {
public:
///
InsetFootlike();
///
void write(Buffer const * buf, std::ostream & os) const;
///
bool insertInsetAllowed(Inset * inset) const;
bool insertInsetAllowed(Inset::Code) const;
};
#endif