/*
Asterop GeoIntelligence Intranet/Internet Framework

(c) Asterop 1999-2007

CResult : Client-Server transaction call result
*/

var CResult = Class.create();

CResult.prototype =
{
	initialize: function()
	{
		this.m_result = 0;
	},

	IsOk: function()
	{
		return (this.m_result==0);
	},
	
	GetResult: function()
	{
		return this.m_result;
	}
};

