mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
b032e2dfaf
shared_ptrs now only require the <memory> header.
25 lines
522 B
C++
25 lines
522 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file DocumentClassPtr.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Richard Heck
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef DOCUMENT_CLASS_PTR_H
|
|
#define DOCUMENT_CLASS_PTR_H
|
|
|
|
#include <memory>
|
|
|
|
namespace lyx {
|
|
class DocumentClass;
|
|
|
|
typedef std::shared_ptr<DocumentClass> DocumentClassPtr;
|
|
typedef std::shared_ptr<DocumentClass const> DocumentClassConstPtr;
|
|
}
|
|
|
|
#endif // DISPATCH_RESULT_H
|