Regulatory.cc File Reference

Regulatory implementation. More...

Include dependency graph for Regulatory.cc:

Go to the source code of this file.

Macros

#define prefix_
 
#define FLAG_GETSET_IMPL(member, flag)
 
#define GTLT(a)   if (a < other.a) return true; if (other.a < a) return false;
 

Detailed Description

Regulatory implementation.

Definition in file Regulatory.cc.

Macro Definition Documentation

◆ FLAG_GETSET_IMPL

#define FLAG_GETSET_IMPL (   member,
  flag 
)
Value:
prefix_ bool senf::emu::RegulatoryRule::member() \
const \
{ \
return flags_ & Flags::flag; \
} \
prefix_ senf::emu::RegulatoryRule & senf::emu::RegulatoryRule::member(bool f) \
{ \
if (f) flags_ |= Flags::flag; \
else flags_ &= ~Flags::flag; \
return *this; \
}
#define prefix_
Definition: Regulatory.cc:22

Definition at line 68 of file Regulatory.cc.

◆ GTLT

#define GTLT (   a)    if (a < other.a) return true; if (other.a < a) return false;

◆ prefix_

#define prefix_

Definition at line 22 of file Regulatory.cc.