]> git.lyx.org Git - lyx.git/blob - src/support/counter_reps.h
Correct comment
[lyx.git] / src / support / counter_reps.h
1 // -*- C++ -*-
2 /**
3  * \file counter_reps.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Richard Kimberly Heck (roman numerals)
9  * \author Jean-Marc Lasgouttes
10  *
11  * Full author contact details are available in file CREDITS.
12  *
13  * A collection of helper functions to convert counters to different
14  * formats.
15  */
16
17 #ifndef COUNTER_REPS_H
18 #define COUNTER_REPS_H
19
20 #include "support/strfwd.h"
21
22 namespace lyx {
23
24 char loweralphaCounter(int const n);
25 char alphaCounter(int const n);
26 char hebrewCounter(int const n);
27 docstring const romanCounter(int const n);
28 docstring const lowerromanCounter(int const n);
29 docstring const fnsymbolCounter(int const n);
30
31 } // namespace lyx
32
33 #endif