Exemplo n.º 1
0
	bool UnPack (Data_Buffer &data)
	{
		if (data.Get_Data (&x, sizeof (x))) {
			return (Packed_Integers::UnPack (data));
		}
		return (false);
	}
Exemplo n.º 2
0
 bool UnPack (Data_Buffer &data)
 {
     if (data.Get_Data (&x, sizeof (x))) {
         return (Cell_Array::UnPack (data, true));
     }
     return (false);
 }
Exemplo n.º 3
0
	bool UnPack (Data_Buffer &data)
	{
		if (data.Get_Data (&x, sizeof (x))) {
			return (Sim_Leg_Queue::UnPack (data));
		}
		return (false);
	}
Exemplo n.º 4
0
	bool  UnPack (Data_Buffer &data)           { return (data.Get_Data (this, sizeof (*this))); }
Exemplo n.º 5
0
	bool  Pack (Data_Buffer &data)             { return (data.Add_Data (this, sizeof (*this))); }