gitignore update
This commit is contained in:
parent
708b35c295
commit
8547dbb1bd
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,6 +7,7 @@ gnuplotscript.gp
|
||||||
*.lo
|
*.lo
|
||||||
*.o
|
*.o
|
||||||
*.obj
|
*.obj
|
||||||
|
*.bin
|
||||||
|
|
||||||
# Precompiled Headers
|
# Precompiled Headers
|
||||||
*.gch
|
*.gch
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#include <b15f/b15f.h>
|
#include <b15f/b15f.h>
|
||||||
#include <b15f/plottyfile.h>
|
#include <b15f/plottyfile.h>
|
||||||
|
|
||||||
|
constexpr char * PLOT_FILE = "plot.bin";
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
@ -41,6 +42,6 @@ int main()
|
||||||
}
|
}
|
||||||
|
|
||||||
// speichern und plotty starten
|
// speichern und plotty starten
|
||||||
pf.writeToFile("test_plot");
|
pf.writeToFile(PLOT_FILE);
|
||||||
pf.startPlotty("test_plot");
|
pf.startPlotty(PLOT_FILE);
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue