This file is indexed.

/usr/include/tercpp/stringHasher.h is in libtercpp-dev 0.6.2+svn46-1.1+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#ifndef __STRINGHASHER_H__
#define __STRINGHASHER_H__
#include <string>
//#include <ext/hash_map>
#include <iostream>

using namespace std;
namespace HashMapSpace
{

    class stringHasher
    {
        private:
            long m_hashKey;
            string m_key;
            string m_value;

        public:
            stringHasher ( long cle, string cleTxt, string valueTxt );
            long getHashKey();
            string getKey();
            string getValue();
            void setValue ( string value );


    };


}
#endif