2 * Copyright (c) 2017 Jon Turney
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
14 #include <package_depends.h>
15 #include <LogSingleton.h>
18 dumpPackageDepends (PackageDepends
const ¤tList
,
21 Log (LOG_BABBLE
) << "( ";
22 PackageDepends::const_iterator i
= currentList
.begin();
25 if (i
== currentList
.end()) break;
26 Log (LOG_BABBLE
) << **i
<< " ";
29 Log (LOG_BABBLE
) << ")";