]> git.lyx.org Git - lyx.git/blob - src/insets/insetcaption.h
prepare for 1.1.6pre2
[lyx.git] / src / insets / insetcaption.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000 The LyX Team.
8  *
9  *======================================================
10  */
11
12
13 #ifndef INSETCAPTION_H
14 #define INSETCAPTION_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "insettext.h"
21
22 /** A caption inset
23 */
24 class InsetCaption : public InsetText {
25 public:
26         ///
27         void Write(Buffer const * buf, std::ostream & os) const;
28         ///
29         void Read(Buffer const * buf, LyXLex & lex);
30         ///
31         Inset::Code LyxCode() const {
32                 return CAPTION_CODE;
33         }
34 protected:
35 private:
36 };
37
38 #endif