/usr/include/CLAM/FrameTransformationConfig.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 | #ifndef _FrameTransformationConfig_
#define _FrameTransformationConfig_
#include "Processing.hxx"
#include "BPF.hxx"
namespace CLAM
{
	class FrameTransformationConfig : public ProcessingConfig
	{
		public:
                DYNAMIC_TYPE_USING_INTERFACE (FrameTransformationConfig, 2,ProcessingConfig);
				DYN_ATTRIBUTE(0, public, bool, PreserveOuts);
				DYN_ATTRIBUTE (1, public, BPF, BPF);
		private:
			void DefaultInit()
			{
				AddPreserveOuts();
				UpdateData();
				SetPreserveOuts(false);
			}
	};
} // namespace CLAM
#endif
 |