mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
d59d3eb51a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@897 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
644 B
C++
39 lines
644 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2000 The LyX Team.
|
|
*
|
|
*======================================================
|
|
*/
|
|
|
|
|
|
#ifndef INSETCAPTION_H
|
|
#define INSETCAPTION_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insettext.h"
|
|
|
|
/** A caption inset
|
|
*/
|
|
class InsetCaption : public InsetText {
|
|
public:
|
|
///
|
|
void Write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
void Read(Buffer const * buf, LyXLex & lex);
|
|
///
|
|
Inset::Code LyxCode() const {
|
|
return CAPTION_CODE;
|
|
}
|
|
protected:
|
|
private:
|
|
};
|
|
|
|
#endif
|