mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
1070702ea4
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3255 a592a061-630c-0410-9148-cb99ea01b6c8
25 lines
586 B
C++
25 lines
586 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* =================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
* Copyright 1995 Matthias Ettrich.
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* This file Copyright 2000 Baruch Even
|
|
* ================================================= */
|
|
|
|
#ifndef LYXIMAGE_H
|
|
#define LYXIMAGE_H
|
|
|
|
// We need it to know what version to use.
|
|
|
|
#ifndef X_DISPLAY_MISSING
|
|
#include "LyXImage_X.h"
|
|
#elif defined(DO_WINDOWS)
|
|
// Not implemented, for illustration only.
|
|
#include "LyXImage_Windows.h"
|
|
#endif
|
|
|
|
#endif
|