Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Pipeline Executor #18

Merged
merged 18 commits into from
Feb 6, 2023
3 changes: 3 additions & 0 deletions source/pdal/pdalc_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/

#define _CRT_SECURE_NO_WARNINGS
#include "pdalc_config.h"

#include <cstdlib>
Expand All @@ -36,6 +37,8 @@
#include <pdal/pdal_config.hpp>
#include <pdal/util/Utils.hpp>



namespace pdal
{
namespace capi
Expand Down
1 change: 1 addition & 0 deletions source/pdal/pdalc_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#include "pdalc_forward.h"


/**
* @file pdalc_config.h
* Functions to retrieve PDAL version and configuration information.
Expand Down
4 changes: 3 additions & 1 deletion source/pdal/pdalc_dimtype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/

#define _CRT_SECURE_NO_WARNINGS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is usually done with compile-time definitions instead of sticking it here, but i'm not much of a windows dev

#include "pdal/pdalc_dimtype.h"

#include <pdal/DimType.hpp>



namespace pdal
{
namespace capi
Expand Down
4 changes: 2 additions & 2 deletions source/pdal/pdalc_forward.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
namespace pdal
{
struct DimType;
class PipelineExecutor;
class PipelineManager;
class PointView;
class TriangularMesh;

Expand All @@ -64,10 +64,10 @@ using MeshPtr = std::shared_ptr<TriangularMesh>;
namespace capi
{
class PointViewIterator;
using Pipeline = std::unique_ptr<pdal::PipelineExecutor>;
using PointView = pdal::PointViewPtr;
using TriangularMesh = pdal::MeshPtr;
using DimTypeList = std::unique_ptr<pdal::DimTypeList>;

}
}

Expand Down
Loading