This file is indexed.

/usr/include/libGenome-1.3/libGenome/gnClone.h is in libgenome-1.3-dev 1.3.1-7.

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
31
32
33
34
35
36
37
/////////////////////////////////////////////////////////////////////////////
// File:            gnClone.h
// Purpose:         Abstract Clone class
// Description:     Define the a Clonable interface for other objects
// Changes:        
// Version:         libGenome 0.5.1 
// Author:          Aaron Darling 
// Modified by:     
// Copyright:       (c) Aaron Darling 
// Licenses:        See COPYING file for details 
/////////////////////////////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifndef _gnClone_h_
#define _gnClone_h_

#include "libGenome/gnDefs.h"


namespace genome {

class GNDLLEXPORT gnClone
{
	public:
		virtual ~gnClone(){}
		virtual gnClone* Clone() const = 0;
		gnClone(){}
	private:
};// class gnClone


}	// end namespace genome

#endif
	// _gnClone_h_