Show location for backsights out of tolerance
[survex.git] / src / export3d.h
blobedaaaaa075b39b76386656bebd237ddcc2c391da
1 /* export3d.h
2 * Export from Aven as Survex .3d.
3 */
5 /* Copyright (C) 2005,2013,2014,2015,2018,2022 Olly Betts
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "exportfilter.h"
24 #include <vector>
26 #include "img.h"
28 class Export3D : public ExportFilter {
29 private:
30 wxString cs;
31 char separator;
33 img* pimg = nullptr;
35 public:
36 Export3D(const wxString cs_, char separator_)
37 : cs(cs_), separator(separator_) { }
39 ~Export3D();
40 const int * passes() const;
41 void header(const char *, const char *, time_t,
42 double, double, double,
43 double, double, double);
44 void line(const img_point *, const img_point *, unsigned, bool);
45 void label(const img_point *, const wxString&, bool, int);
46 void footer();