#ifndef SANDBOX_WIN_SRC_POLICY_PARAMS_H_
#define SANDBOX_WIN_SRC_POLICY_PARAMS_H_
#include "sandbox/win/src/policy_engine_params.h"
namespace sandbox {
class ParameterSet;
#define POLPARAMS_BEGIN(type) class type { public: enum Args {
#define POLPARAM(arg) arg,
#define POLPARAMS_END(type) PolParamLast }; }; \
typedef sandbox::ParameterSet type##Array [type::PolParamLast];
POLPARAMS_BEGIN(OpenFile)
POLPARAM(NAME)
POLPARAM(ACCESS)
POLPARAM(OPENONLY)
POLPARAMS_END(OpenFile)
POLPARAMS_BEGIN(NameBased)
POLPARAM(NAME)
POLPARAMS_END(NameBased)
}
#endif