Skip to content

Commit 18b147a

Browse files
committed
Window: make all windows public
resolves #44
1 parent 041cd14 commit 18b147a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/FftSharp/Windows/Cosine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace FftSharp.Windows
44
{
5-
internal class Cosine : Window, IWindow
5+
public class Cosine : Window, IWindow
66
{
77
public override string Name => "Cosine";
88
public override string Description =>

src/FftSharp/Windows/Hamming.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace FftSharp.Windows
44
{
5-
internal class Hamming : Window, IWindow
5+
public class Hamming : Window, IWindow
66
{
77
public override string Name => "Hamming";
88
public override string Description =>

src/FftSharp/Windows/Tukey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace FftSharp.Windows
66
{
7-
internal class Tukey : Window, IWindow
7+
public class Tukey : Window, IWindow
88
{
99
private readonly double Alpha;
1010

src/FftSharp/Windows/Welch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace FftSharp.Windows
66
{
7-
internal class Welch : Window, IWindow
7+
public class Welch : Window, IWindow
88
{
99
public override string Name => "Welch";
1010
public override string Description =>

0 commit comments

Comments
 (0)