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