You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
320 B
21 lines
320 B
/* |
|
SPDX-FileCopyrightText: 2006 Luigi Toscano <luigi.toscano@tiscali.it> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "dviPageInfo.h" |
|
|
|
dviPageInfo::dviPageInfo() |
|
{ |
|
sourceHyperLinkList.reserve(200); |
|
} |
|
|
|
dviPageInfo::~dviPageInfo() |
|
{ |
|
} |
|
|
|
void dviPageInfo::clear() |
|
{ |
|
sourceHyperLinkList.clear(); |
|
}
|
|
|