Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
GdalFileExporter.ExportTo(string path,IFunction source)
{
   //get store for given path
   IFunctionStore targetStore = GetStoreForPath(path)
   //
   source.CloneTo(targetStore)

}

In the function IFunction we should add a CloneTo method that adds a clone using the given store. The Clone() method uses the memory store. The CloneTo method is the hard part since there we should time the SetValues call after the store is set.