/****************************************************************************** * Copyright (c) 2019, Connor Manning (connor@hobu.co) * * Entwine -- Point cloud indexing * * Entwine is available under the terms of the LGPL2 license. See COPYING * for specific license text and more information. * ******************************************************************************/ #pragma once #include #include #include #include namespace entwine { arbiter::LocalHandle localize( std::string path, bool deep, std::string tmp, const arbiter::Arbiter& a); SourceInfo analyzeOne(std::string path, bool deep, json pipelineTemplate); Source parseOne(std::string path, const arbiter::Arbiter& a = { }); SourceList analyze( const StringList& inputs, const json& pipelineTemplate = json::array({ json::object() }), bool deep = false, std::string tmp = arbiter::getTempPath(), const arbiter::Arbiter& a = { }, unsigned threads = 8, bool verbose = true); } // namespace entwine