diff options
author | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
---|---|---|
committer | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
commit | b18347ffc9db9641e215995edea1c04c363b2bdf (patch) | |
tree | f3908dc911399f1a21e17d950355ee56dc0919ee /includes/plot.hpp |
Initial commit.
Diffstat (limited to 'includes/plot.hpp')
-rw-r--r-- | includes/plot.hpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/includes/plot.hpp b/includes/plot.hpp new file mode 100644 index 0000000..7069357 --- /dev/null +++ b/includes/plot.hpp @@ -0,0 +1,41 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file plot.hpp + +#ifndef _PLOT_HPP +#define _PLOT_HPP + +#ifdef WITH_OVER20 + +#include <iostream> +#include <iomanip> +#include <fstream> +#include <vector> + +#include "utilities.hpp" +#include "blkcom.hpp" +#include "dekspy.hpp" +#include "labcom.hpp" +#include "emtp.hpp" +#include "over20.hpp" + +namespace plot +{ + + void sysplt(void *); + void rtmplt(void); + void tpplot(void); + void pltvar(void); + void chrplt(void); + void tekplt(void); + void tgrid(int, int, int, int, int, int, int); + void pltfil(const long int &); + void pltlu2(double *, std::vector<double> *); + +} + +#endif // WITH_OVER20 + +#endif // _PLOT_HPP + +// end of file plot.hpp |