blob: 0eed3cee57c202d5af5231b9f09926d5547be840 (
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
42
43
44
45
46
47
48
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file lab29.hpp.hpp
#ifndef _LAB29_HPP
#define _LAB29_HPP
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <ostream>
#include <sstream>
#include <cstdlib>
#include <cstdint>
#include <cinttypes>
#include <vector>
namespace com29 {
// Variables.
extern int nLimInc;
extern int nIOFArr;
extern int nVar;
extern int nKey;
extern int nMaxo29;
//
extern double nPer;
extern double nXmean1;
extern double nXVar1;
extern double nStDev1;
extern double nVMax;
// subroutine guts29.
void guts29(std::string &, \
std::vector<int> &, \
std::vector<int> &, \
int &, \
int &, \
double &, \
std::vector<double> &, \
std::vector<double> &, \
std::vector<double> &);
#endif // _LAB29_HPP
// end of file lab29.hpp
|