blob: df97a0f9bec09edbb4fd8e641284a3ce6e6400e2 (
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 vardim.hpp
#ifndef _VARDIM_HPP
#define _VARDIM_HPP
#include <iostream>
#include <fstream>
#include <ostream>
#include <sstream>
#include <cstdlib>
#include <exception>
#include <stdexcept>
#include <string>
#include "blkcom.hpp"
namespace vardim {
struct tagVariables {
std::string m_sCBlock;
int m_nNCB;
std::string m_sCBLSer;
int m_nJBLType;
};
typedef struct tagVariables tVariables;
// Default dimensions.
extern int pLstDef[ 28 ];
extern tVariables pVariables[];
// Functions.
bool vardim(void);
}
#endif // _VARDIM_HPP
// end of file vardim.hpp
|