/usr/include/CLAM/MIDIFileIOConfig.hxx is in libclam-dev 1.4.0-5build1.
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 | #ifndef __MIDIFILEIOCONFIG__
#define __MIDIFILEIOCONFIG__
#include <typeinfo>
#include <string>
#include "ProcessingConfig.hxx"
namespace CLAM
{
class MIDIFileIOConfig : public ProcessingConfig
{
public:
DYNAMIC_TYPE_USING_INTERFACE (MIDIFileIOConfig, 1, ProcessingConfig);
/* Filename */
DYN_ATTRIBUTE(0,public, std::string, FileName);
private:
void DefaultInit();
};
}
#endif
|