lyx_mirror/src/lyxlayout_ptr_fwd.h
Jean-Marc Lasgouttes e464398e44 remove all traces of #pragma interface/implementation
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9357 a592a061-630c-0410-9148-cb99ea01b6c8
2004-12-07 10:50:09 +00:00

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