blob: 9ca57a5cc79bba676b5bc93057fccf47daae0b21 (
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
|
//-*- 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
|