diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-24 22:26:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-25 19:44:56 +0100 |
| commit | 07befde2cbbad4d979631727fc35399164d0aa1c (patch) | |
| tree | fbc537ff6789d8aabe71e69b4055daf302527cd1 /src/wx/audio_plot.cc | |
| parent | dadde92543ee5039d2dc869c698fcde7ffac5f4b (diff) | |
Cleanup: move some methods from util to maths_util.
Diffstat (limited to 'src/wx/audio_plot.cc')
| -rw-r--r-- | src/wx/audio_plot.cc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/wx/audio_plot.cc b/src/wx/audio_plot.cc index 90a4aa91d..3c0212331 100644 --- a/src/wx/audio_plot.cc +++ b/src/wx/audio_plot.cc @@ -20,27 +20,28 @@ #include "audio_plot.h" -#include "wx_util.h" #include "film_viewer.h" +#include "wx_util.h" #include "lib/audio_decoder.h" #include "lib/audio_analysis.h" #include "lib/compose.hpp" +#include "lib/maths_util.h" #include <wx/graphics.h> #include <boost/bind/bind.hpp> -#include <iostream> #include <cfloat> +#include <iostream> using std::cout; -using std::vector; using std::list; +using std::map; using std::max; using std::min; -using std::map; -using boost::bind; -using boost::optional; +using std::vector; using std::shared_ptr; using std::weak_ptr; +using boost::bind; +using boost::optional; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; #endif |
