mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Undo APIEXPORT thats not required
I was doing a dll before a static and well. Our unit test system isnt setup to handle DLLs at all. Ugh
This commit is contained in:
parent
74fd23f573
commit
c84619cd7f
@ -34,8 +34,6 @@
|
||||
|
||||
#include <ostream>
|
||||
|
||||
#include <import_export.h>
|
||||
|
||||
///< Default minimum distance between points to treat them as separate ones (mm)
|
||||
static constexpr double MIN_DISTANCE = 0.01;
|
||||
|
||||
@ -96,7 +94,7 @@ struct TRIPLET
|
||||
|
||||
std::ostream& operator<<( std::ostream& aStream, const TRIPLET& aTriplet );
|
||||
|
||||
APIEXPORT bool Get2DPositionAndRotation( const SEXPR::SEXPR* data, DOUBLET& aPosition, double& aRotation );
|
||||
bool Get2DPositionAndRotation( const SEXPR::SEXPR* data, DOUBLET& aPosition, double& aRotation );
|
||||
bool Get2DCoordinate( const SEXPR::SEXPR* data, DOUBLET& aCoordinate );
|
||||
bool Get3DCoordinate( const SEXPR::SEXPR* data, TRIPLET& aCoordinate );
|
||||
bool GetXYZRotation( const SEXPR::SEXPR* data, TRIPLET& aRotation );
|
||||
@ -109,6 +107,6 @@ bool GetXYZRotation( const SEXPR::SEXPR* data, TRIPLET& aRotation );
|
||||
* @param aLayerElem the s-expr element to get the name from.
|
||||
* @return the layer name if valid, else empty.
|
||||
*/
|
||||
APIEXPORT OPT<std::string> GetLayerName( const SEXPR::SEXPR& aLayerElem );
|
||||
OPT<std::string> GetLayerName( const SEXPR::SEXPR& aLayerElem );
|
||||
|
||||
#endif // KICADBASE_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user