/usr/include/CLAM/FlagControl.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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #ifndef _FlagControl_hxx_
#define _FlagControl_hxx_
#include "DataTypes.hxx"
#include "OutControl.hxx"
#include "Processing.hxx"
#include "ProcessingConfig.hxx"
#include <string>
namespace CLAM
{
class FlagControlConfig : public ProcessingConfig
{
public:
DYNAMIC_TYPE_USING_INTERFACE (FlagControlConfig, 2, ProcessingConfig);
DYN_ATTRIBUTE (0, public, std::string, Name);
DYN_ATTRIBUTE (1, public, bool, Flag );
protected:
void DefaultInit(void);
};
class FlagControl : public Processing
{
private:
FlagControlConfig mConfig;
FloatOutControl mFlagOutControl;
public:
FlagControl();
FlagControl( const FlagControlConfig & );
bool Do();
virtual ~FlagControl(){}
const char * GetClassName() const {return "FlagControl";}
inline const ProcessingConfig &GetConfig() const { return mConfig;}
bool ConcreteConfigure(const ProcessingConfig& c);
};
} //namespace CLAM
#endif
|