6 #ifndef PARAGRAPHMAP_H_
7 #define PARAGRAPHMAP_H_
10 #include "HighlightStateData.h"
12 #define STARTING_SIZE 100
21 typedef std::vector<HighlightStateData *> vectorType;
22 vectorType dataVector;
Definition: ColorDialog.cpp:12
Internal class for mapping paragraph numbers to HighlightStateData.
Definition: ParagraphMap.h:20
HighlightStateData * getData(int pos)
Returns a reference to the data stored at the given position.
Definition: ParagraphMap.cpp:44
void insert(int pos, HighlightStateData *data)
Inserts data in the given position; if it is the first time we use that position, space is allocated ...
Definition: ParagraphMap.cpp:31
Utility class to deal with current highlighting state (and stack of states)
Definition: HighlightStateData.h:16