예제 #1
0
resulthandler<T>::resulthandler(T value, status success, int id)
{
	common_constructor();
	value_ = value;
	success_ = success;
	id_ = id;
}
예제 #2
0
resulthandler<T>::resulthandler(T value, status success, std::string text)
{
	common_constructor();
	value_ = value;
	success_ = success;
	text_ = text;
}
예제 #3
0
resulthandler<T>::resulthandler(status success, int id, std::string text)
{
	common_constructor();
	success_ = success;
	id_ = id;
	text_ = text;
}
예제 #4
0
// Make sure assignment is deep!
RegStore::AoR& RegStore::AoR::operator= (AoR const& other)
{
  if (this != &other)
  {
    clear(true);
    common_constructor(other);
  }

  return *this;
}
예제 #5
0
파일: common.c 프로젝트: cancgroup/freewrl
void common_init(struct tcommon *t){
	//public
	//private
	t->prv = common_constructor();
	{
		ppcommon p = (ppcommon)t->prv;
		p->myFps = (float) 0.0;
		//char myMenuStatus[MAXSTAT];
		//char messagebar[MAXSTAT];
		//char window_title[MAXTITLE];
		p->cursorStyle = ACURSE;
		p->promptForURL = 0;
		p->promptForFile = 0;
	}
}
예제 #6
0
파일: nt.cpp 프로젝트: nielsbasjes/SuckMT
omni_thread::omni_thread(void* arg, priority_t pri)
{
    common_constructor(arg, pri, 1);
    fn_void = NULL;
    fn_ret = NULL;
}
예제 #7
0
파일: nt.cpp 프로젝트: nielsbasjes/SuckMT
omni_thread::omni_thread(void* (*fn)(void*), void* arg, priority_t pri)
{
    common_constructor(arg, pri, 0);
    fn_void = NULL;
    fn_ret = fn;
}
예제 #8
0
/// Copy constructor.
RegStore::AoR::AoR(const AoR& other)
{
  common_constructor(other);
}
예제 #9
0
HockeyDrop::HockeyDrop(int xin, int yin) {
	x = xin;
	y = yin;
	common_constructor();
}
예제 #10
0
HockeyDrop::HockeyDrop() {
	x = y = 0;
	common_constructor();
}
예제 #11
0
resulthandler<T>::resulthandler(T value, status success)
{
	common_constructor();
	value_ = value;
	success_ = success;
}
예제 #12
0
resulthandler<T>::resulthandler(status success, int id)
{
	common_constructor();
	success_ = success;
	id_ = id;
}
예제 #13
0
resulthandler<T>::resulthandler(status success)
{
	common_constructor();
	success_ = success;
}
예제 #14
0
resulthandler<T>::resulthandler()
{
	common_constructor();
}