Avoid spurious diffs from inadvertent newline changes by letting git normalize newlines in the path module as well, just as a list of other modules including Draft already do. This effectively standardizes all checked-in code to Unix newlines, but checkouts might use CRLF if that is the user preference.
24 lines
534 B
C++
24 lines
534 B
C++
// AreaDxf.h
|
|
// Copyright (c) 2011, Dan Heeks
|
|
// This program is released under the BSD license. See the file COPYING for details.
|
|
|
|
#pragma once
|
|
|
|
#include "dxf.h"
|
|
|
|
class CSketch;
|
|
class CArea;
|
|
class CCurve;
|
|
|
|
class AreaDxfRead : public CDxfRead{
|
|
void StartCurveIfNecessary(const double* s);
|
|
|
|
public:
|
|
CArea* m_area;
|
|
AreaDxfRead(CArea* area, const char* filepath);
|
|
|
|
// AreaDxfRead's virtual functions
|
|
void OnReadLine(const double* s, const double* e);
|
|
void OnReadArc(const double* s, const double* e, const double* c, bool dir);
|
|
};
|