Skip to content

Commit

Permalink
Merge pull request #45 from swharden/public-windows
Browse files Browse the repository at this point in the history
Window: make all windows public
  • Loading branch information
swharden committed Nov 17, 2021
2 parents 33ab6ae + ba111e8 commit a736f90
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/FftSharp/FftSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<PackageReleaseNotes>https://github.com/swharden/FftSharp/releases</PackageReleaseNotes>
<IncludeSymbols>true</IncludeSymbols>
<DocumentationFile>FftSharp.xml</DocumentationFile>
<Version>1.1.3</Version>
<AssemblyVersion>1.1.3.0</AssemblyVersion>
<FileVersion>1.1.3.0</FileVersion>
<Version>1.1.4</Version>
<AssemblyVersion>1.1.4.0</AssemblyVersion>
<FileVersion>1.1.4.0</FileVersion>
<NoWarn>1591</NoWarn>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion src/FftSharp/Windows/Cosine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace FftSharp.Windows
{
internal class Cosine : Window, IWindow
public class Cosine : Window, IWindow
{
public override string Name => "Cosine";
public override string Description =>
Expand Down
2 changes: 1 addition & 1 deletion src/FftSharp/Windows/Hamming.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace FftSharp.Windows
{
internal class Hamming : Window, IWindow
public class Hamming : Window, IWindow
{
public override string Name => "Hamming";
public override string Description =>
Expand Down
2 changes: 1 addition & 1 deletion src/FftSharp/Windows/Tukey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace FftSharp.Windows
{
internal class Tukey : Window, IWindow
public class Tukey : Window, IWindow
{
private readonly double Alpha;

Expand Down
2 changes: 1 addition & 1 deletion src/FftSharp/Windows/Welch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace FftSharp.Windows
{
internal class Welch : Window, IWindow
public class Welch : Window, IWindow
{
public override string Name => "Welch";
public override string Description =>
Expand Down

0 comments on commit a736f90

Please sign in to comment.