2002-06-24 20:28:12 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
2007-10-23 21:41:17 +00:00
|
|
|
|
* \file LayoutPtr.h
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* 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
|
|
|
|
|
2007-10-23 21:41:17 +00:00
|
|
|
|
#ifndef LAYOUTPTR_H
|
|
|
|
|
#define LAYOUTPTR_H
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-29 18:58:28 +00:00
|
|
|
|
class Layout;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
|
|
|
|
/// Global typedef
|
2007-08-23 19:59:07 +00:00
|
|
|
|
typedef boost::shared_ptr<Layout> LayoutPtr;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
#endif
|