MusicSpectrum  1.0.0
Referência do Arquivo main.cpp
#include "Render/render.hpp"

Funções

int main (void)
 

Funções

◆ main()

int main ( void  )
3  {
4  try {
5  auto render = std::make_shared<Render>();
6  render->run();
7  } catch (const std::exception &e) {
8  std::cerr << "Exception: " << e.what() << '\n';
9  return EXIT_FAILURE;
10  }
11  return EXIT_SUCCESS;
12 }