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:
Marek Roszko 2021-09-11 23:08:33 -04:00
parent 74fd23f573
commit c84619cd7f
1 changed files with 2 additions and 4 deletions

View File

@ -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