blob: 83292b41a8d31a43dd9ea6cf4c0d18b536180040 (
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
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file freedom.hpp
#ifndef _FREEDOM_HPP
#define _FREEDOM_HPP
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdio>
#include <cstddef>
#include <cstdint>
#include "blkcom.hpp"
#include "dekspy.hpp"
namespace freedom {
template <class T> bool freeName(T &);
bool freeIn(const std::string &, int32_t &);
bool freeIn(const std::string &, int32_t &, int32_t &);
bool freeFix(const std::string &, int32_t &);
bool freeOne(double &);
}
#endif // _FREEDOM_HPP
// end of file freedom.hpp
|