mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
23 lines
488 B
C
23 lines
488 B
C
|
// -*- C++ -*-
|
||
|
/* This file is part of
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright 1995 Matthias Ettrich
|
||
|
* Copyright 1995-2001 The LyX Team.
|
||
|
*
|
||
|
* ====================================================== */
|
||
|
|
||
|
#ifndef LYXLAYOUT_PTR_FWD_H
|
||
|
#define LYXLAYOUT_PTR_FWD_H
|
||
|
|
||
|
#include <boost/shared_ptr.hpp>
|
||
|
|
||
|
class LyXLayout;
|
||
|
|
||
|
/// Global typedef
|
||
|
typedef boost::shared_ptr<LyXLayout> LyXLayout_ptr;
|
||
|
|
||
|
#endif
|