1 #include <iostream>
2 #include "../Renderer.h"
3 #include "../FFT.h"
4 #include "../SetupDialog.h"
5 
6 namespace SetupDialog
7 {
8 
Open(SetupDialog::SETTINGS * settings)9 bool Open( SetupDialog::SETTINGS * settings )
10 {
11   std::cerr << __FUNCTION__ << " STUB" << std::endl;
12   return true;
13 }
14 
15 }