mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
71a377eab3
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5613 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
688 B
C++
28 lines
688 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef BULLET_STRINGS
|
|
#define BULLET_STRINGS
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
extern char const * bullets_standard[];
|
|
extern char const * bullets_amssymb[];
|
|
extern char const * bullets_psnfss1[];
|
|
extern char const * bullets_psnfss2[];
|
|
extern char const * bullets_psnfss3[];
|
|
extern char const * bullets_psnfss4[];
|
|
extern char const ** BulletPanels[];
|
|
|
|
#endif // BULLET_STRINGS
|