FFMpegCore/FFMpegCore/FFMpeg/Arguments/IDynamicArgument.cs
Malte Rosenbjerg b208c65b5a Cleanup using directives
Former-commit-id: 237fa3353f
2023-01-29 23:01:37 +01:00

15 lines
No EOL
473 B
C#

using System.Collections.Generic;
namespace FFMpegCore.Arguments
{
public interface IDynamicArgument
{
/// <summary>
/// Same as <see cref="IArgument.Text"/>, but this receives the arguments generated before as parameter
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
//public string GetText(StringBuilder context);
public string GetText(IEnumerable<IArgument> context);
}
}