function CPhoto(jsonPhoto, parent)
{
  this.parent = parent;
	this.jsonPhoto = jsonPhoto;
}

CPhoto.prototype.getParent        		= function(){return this.parent;};
CPhoto.prototype.getName 			    = function(){return this.jsonPhoto.name;};
CPhoto.prototype.getID 				    = function(){return this.jsonPhoto.id;};
CPhoto.prototype.getIdx				    = function(){return this.jsonPhoto.idx;};
CPhoto.prototype.getExif			    = function(){return this.jsonPhoto.exif;};
CPhoto.prototype.getTags			    = function(){return this.jsonPhoto.tags;};
CPhoto.prototype.getPhotoUrl		  	= function(){return this.jsonPhoto.photoUrl;};
CPhoto.prototype.getThumbnailUrl  		= function(){return this.jsonPhoto.thumbnailUrl;};
CPhoto.prototype.getBigThumbUrl	  		= function(){return this.jsonPhoto.bigThumbUrl;};
CPhoto.prototype.getWallpaperUrl	  	= function(){return this.jsonPhoto.wallpaperUrl;};
CPhoto.prototype.getMainID			  	= function(){return this.jsonPhoto.mainID;};
CPhoto.prototype.getSubID			    = function(){return this.jsonPhoto.subID;};
CPhoto.prototype.getIsWallpaperAllowed	= function(){return this.jsonPhoto.wallpaperAllowed;};
