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/vardim.hpp |
Initial commit.
Diffstat (limited to 'includes/vardim.hpp')
-rw-r--r-- | includes/vardim.hpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/includes/vardim.hpp b/includes/vardim.hpp new file mode 100644 index 0000000..df97a0f --- /dev/null +++ b/includes/vardim.hpp @@ -0,0 +1,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 |