Exemple #1
0
 void reg_fpr    ::invite (visitor &v) { v.visit (*this); }
Exemple #2
0
 void ptrvar     ::invite (visitor &v) { v.visit (*this); }
Exemple #3
0
 void mnemonic   ::invite (visitor &v) { v.visit (*this); }
Exemple #4
0
 void function   ::invite (visitor &v) { v.visit (*this); }
Exemple #5
0
 void entry      ::invite (visitor &v) { v.visit (*this); }
bool usage_requirements::accept(visitor& v) const
{
   return v.visit(*this);
}
Exemple #7
0
 void compcall   ::invite (visitor &v) { v.visit (*this); }
Exemple #8
0
 void instruction::invite (visitor &v) { v.visit (*this); }
Exemple #9
0
 void imm_int    ::invite (visitor &v) { v.visit (*this); }
Exemple #10
0
void attack::accept(visitor& v)
{
	v.visit(shared_from_this());
}
Exemple #11
0
 void code       ::invite (visitor &v) { v.visit (*this); }
Exemple #12
0
void recruit::accept(visitor& v)
{
	v.visit(shared_from_this());
}
Exemple #13
0
void move::accept(visitor& v)
{
	v.visit(shared_from_this());
}
		virtual void accept(visitor& v) override
		{
			v.visit(*this);
		}
Exemple #15
0
 void fltvar     ::invite (visitor &v) { v.visit (*this); }
Exemple #16
0
 void assignment ::invite (visitor &v) { v.visit (*this); }
Exemple #17
0
 void reg_ret    ::invite (visitor &v) { v.visit (*this); }
Exemple #18
0
bool feature_set::accept(visitor& v) const
{
   return v.visit(*this);
}