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

using System;
using System.Collections;
using System.Collections.Generic;


namespace Css{
	
	/// <summary>
	/// Used for the calc(..) css function. Currently syntax only support; superceded by box-sizing CSS property.
	/// </summary>
	
	public class Calculation{
		
		public Calculation(string calculation){
		}
		
		public float Run(float size){
			return size;
		}
		
		public override string ToString(){
			return "";
		}
		
	}
	
}