/* * dialog.results.h * BoE * * Created by Celtic Minstrel on 06/06/09. * */ // Functions for allowing the dialog to have a result which can be of any type. template inline void cDialog::setResult(const type& val){ result = val; } template inline type cDialog::getResult(){ return boost::any_cast(result); }