This file is indexed.

/usr/include/CLAM/MIDIFileReader.hxx is in libclam-dev 1.4.0-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
#ifndef __MIDIFILEREADER__
#define __MIDIFILEREADER__

#include "OutPort.hxx"
#include "MIDITypes.hxx"
#include "MIDIFileIOConfig.hxx"
#include "Processing.hxx"

namespace CLAM
{
	class MIDIFileReader : public Processing
	{
	public:
		MIDIFileReader();
		MIDIFileReader(const MIDIFileIOConfig& cfg);
		~MIDIFileReader();

		bool Do();
		bool Do(MIDISong& out);

		const char * GetClassName() const {return "MIDIFileReader";}

		inline const ProcessingConfig &GetConfig() const { return mConfig;}
		bool ConcreteConfigure(const ProcessingConfig& c);
	   
	private:
		MIDIFileIOConfig  mConfig;
		OutPort<MIDISong> mOutput;

		std::string GetEventName(TMIDIByte b);
	};
}

#endif