]> git.lyx.org Git - lyx.git/blob - src/lyxlayout_ptr_fwd.h
Clean-up in CharStyles, externalize detection of undefined styles to
[lyx.git] / src / lyxlayout_ptr_fwd.h
1 // -*- C++ -*-
2 /**
3  * \file lyxlayout_ptr_fwd.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYXLAYOUT_PTR_FWD_H
13 #define LYXLAYOUT_PTR_FWD_H
14
15 #include <boost/shared_ptr.hpp>
16
17
18 namespace lyx {
19
20 class Layout;
21
22 /// Global typedef
23 typedef boost::shared_ptr<Layout> LayoutPtr;
24
25
26 } // namespace lyx
27
28 #endif