//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;


namespace Css.Units{
	
	/// <summary>
	/// Represents an instance of a viewport relative value, e.g. vmax.
	/// </summary>
	
	public class ViewPortUnit:DecimalUnit{
		
		public ViewPortUnit(){
			// All relative:
			Type=ValueType.RelativeNumber;
		}
		
		protected override Value Clone(){
			ViewPortUnit result=new ViewPortUnit();
			result.RawValue=RawValue;
			return result;
		}
		
	}
	
}



