Main Page
Namespaces
Classes
Files
File List
File Members
ListInfo.h
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/*
3
* This file is part of the libmspub project.
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
*/
9
10
#ifndef __LISTINFO_H__
11
#define __LISTINFO_H__
12
13
#include <boost/optional.hpp>
14
15
#include "
NumberingType.h
"
16
#include "
NumberingDelimiter.h
"
17
18
namespace
libmspub
19
{
20
enum
ListType
21
{
22
ORDERED
,
23
UNORDERED
24
};
25
struct
ListInfo
26
{
27
ListType
m_listType
;
28
29
//unordered list stuff
30
boost::optional<unsigned>
m_bulletChar
;
31
ListInfo
(
unsigned
bulletChar) :
m_listType
(
UNORDERED
),
32
m_bulletChar
(bulletChar),
m_numberIfRestarted
(),
33
m_numberingType
(),
m_numberingDelimiter
()
34
{
35
}
36
37
//ordered list stuff
38
boost::optional<unsigned>
m_numberIfRestarted
;
39
boost::optional<NumberingType>
m_numberingType
;
40
boost::optional<NumberingDelimiter>
m_numberingDelimiter
;
41
ListInfo
(boost::optional<unsigned> numberIfRestarted,
NumberingType
numberingType,
42
NumberingDelimiter
numberingDelimiter)
43
:
m_listType
(
ORDERED
),
m_bulletChar
(),
44
m_numberIfRestarted
(numberIfRestarted),
m_numberingType
(numberingType),
45
m_numberingDelimiter
(numberingDelimiter)
46
{
47
}
48
};
49
}
// namespace libmspub
50
51
#endif
/* __LISTINFO_H__ */
52
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Generated for libmspub by
doxygen
1.8.4