Skip to content
Snippets Groups Projects
Commit 8be2c28f authored by Kristoffer Tondel's avatar Kristoffer Tondel
Browse files

fyllde filer med basic saker

parent 358ee852
No related branches found
No related tags found
1 merge request!1Dft
#include "DFT.h"
int main()
{
return 0;
}
DFT::DFT()
{
}
DFT::DFT(int n, int my):n{n},my{my}
{
}
DFT.h 0 → 100644
#include <vector>
class DFT
{
public:
DFT();
DFT(int n, int my);
private:
int n{};
int my{};
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment