This file is indexed.

/usr/include/CLAM/MIDIFileWriter.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
35
36
37
#ifndef __MIDIFILEWRITER__
#define __MIDIFILEWRITER__

#include <list>
#include "InPort.hxx"
#include "MIDIMelody.hxx"
#include "MIDITypes.hxx"
#include "MIDIFileIOConfig.hxx"
#include "Processing.hxx"

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

		bool Do();
		bool Do(const MIDISong& in);

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

		inline const ProcessingConfig &GetConfig() const { return mConfig;}
		bool ConcreteConfigure(const ProcessingConfig& c);
	   
	private:
		MIDIFileIOConfig mConfig;
		InPort<MIDISong> mInput;
		std::list<MIDIEvent> mEventList;
	  
		void BuildEventList(const MIDITrack& trk);
	};
}

#endif