mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
To extend the undo system to dive sites, the importers and downloaders must not parse directly into the global dive site table. Instead, pass a dive_site_table argument to parse into. For now, always pass the global dive_site_table so that this commit should not cause any functional change. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
10 lines
235 B
C++
10 lines
235 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "testprofile.h"
|
|
#include "core/dive.h"
|
|
|
|
void TestProfile::testRedCeiling()
|
|
{
|
|
parse_file("../dives/deep.xml", &dive_table, &trip_table, &dive_site_table);
|
|
}
|
|
|
|
QTEST_GUILESS_MAIN(TestProfile)
|