This file is indexed.

/usr/include/CLAM/SimpleLoopMetadata.hxx is in libclam-dev 1.4.0-6.

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
#ifndef _SimpleLoopMetadata_
#define _SimpleLoopMetadata_

#include "IndexArray.hxx"
#include "Processing.hxx"
#include "Err.hxx"
#include "SDIFInConfig.hxx"
#include "Filename.hxx"
#include "ELoopPointUnits.hxx"

namespace CLAM
{

/**
* This object represents the start and end points of a loop. The given values
* should be in milliseconds.
*
* \author greg kellum [gkellum@iua.upf.edu] 15/7/2007
* \since CLAM v1.1.
*/
class SimpleLoopMetadata : public DynamicType
{
public:
	DYNAMIC_TYPE (SimpleLoopMetadata, 3);
	DYN_ATTRIBUTE(0, public, ELoopPointUnits, Units);
	DYN_ATTRIBUTE(1, public, int, Start);
	DYN_ATTRIBUTE(2, public, int, End);

	// TODO define a new type for EnvelopeStage
//	DYN_ATTRIBUTE(3,public, EnvelopeStage, EnvelopeStage);
	void DefaultInit();
};

} // end namespace CLAM

#endif