Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
scrollbar
  • Current version:
Code Block
	public interface ITime // already strange to have an empty interface
	{
	}


	public interface ITimeSpan : ITime
	{
		ITimeStamp Start    {get;}
		ITimeStamp End      {get;}
	}

	public interface ITimeStamp : ITime
	{
		double ModifiedJulianDay {get;}
	}

        public interface ILinkableComponent
        {
                ITimeSpan TimeHorizon { get; }
                void Update(ITime time);
        }

...