Add missing DLL_HEADERs

This commit is contained in:
Matthias Hochsteger 2019-09-24 13:16:26 +02:00
parent 4deffe6cbe
commit 5d4d0f1e39

View File

@ -394,14 +394,14 @@ namespace netgen
int TrigIsInOC(int tn, int ocn) const;
//get chart number of a trig or 0 if unmarked
ChartId GetChartNr(STLTrigId i) const;
DLL_HEADER ChartId GetChartNr(STLTrigId i) const;
ChartId GetMarker(STLTrigId i) const { return chartmark[i]; }
void SetMarker(STLTrigId nr, ChartId m);
size_t GetNOCharts() const { return atlas.Size(); }
//get a chart from atlas
const STLChart& GetChart(ChartId nr) const { return *atlas[nr];};
STLChart & GetChart(ChartId nr) { return *atlas[nr];};
int AtlasMade() const;
DLL_HEADER int AtlasMade() const;
void GetInnerChartLimes(NgArray<twoint>& limes, ChartId chartnum);
@ -462,7 +462,7 @@ namespace netgen
virtual const Refinement & GetRefinement () const override;
// Add additional Point to chart to close the surface and write the resulting stl to a file
void WriteChartToFile( ChartId chartnumber, string filename="chart.slb" );
DLL_HEADER void WriteChartToFile( ChartId chartnumber, string filename="chart.slb" );
};