blob: 111202152b58f586c19a13ee91e26e10abb35436 (
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
49
50
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file labl02.hpp
#ifndef _LABL02_HPP
#define _LABL02_HPP
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <ostream>
#include <sstream>
#include <cstdlib>
#include <cstdint>
#include <cinttypes>
#include <vector>
namespace com2 {
extern int nN1;
extern int nN2;
extern int nN3;
extern int nN4;
extern int nLCount;
extern int nModel;
extern int nL27Dep;
extern int nIBR1;
extern int nNRecur;
extern int nKGroup;
extern int nNC4;
extern int nNC5;
extern int nIFQ;
extern int nN13;
extern int nIDA;
extern int nIFKC;
extern int nIDY;
extern int nIDM;
extern int nIDQ;
extern int nIDU;
extern int nIDT;
extern int nIQ;
extern int nNC6;
extern int nNC3;
}
#endif // _LABL02_HPP
// end of file labl02.hpp
|