blob: 7069357c1561393b1c599f0b12518d4019dec3ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
|