diff options
Diffstat (limited to 'includes/location.hpp')
-rw-r--r-- | includes/location.hpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/includes/location.hpp b/includes/location.hpp new file mode 100644 index 0000000..9ca57a5 --- /dev/null +++ b/includes/location.hpp @@ -0,0 +1,27 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file location.hpp + +#ifndef _LOCATION_HPP +#define _LOCATION_HPP + +// System includes. + +#include <iostream> +#include <cstdint> +#include <vector> + +#include "blkcom.hpp" + +namespace location { + + extern std::vector<size_t> sLocate; + // + void locatn(void); + template <class T> size_t index(T *); + +} + +#endif // _LOCATION_HPP + +// end of file location.hpp |