2002-06-24 20:28:12 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file lyxlayout_ptr_fwd.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-24 20:28:12 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2002-06-24 20:28:12 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
|
|
|
|
#ifndef LYXLAYOUT_PTR_FWD_H
|
|
|
|
|
#define LYXLAYOUT_PTR_FWD_H
|
|
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
class LyXLayout;
|
|
|
|
|
|
|
|
|
|
/// Global typedef
|
|
|
|
|
typedef boost::shared_ptr<LyXLayout> LyXLayout_ptr;
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
#endif
|