Lots of #include <iostream>s for Arch.
authorCarl Hetherington <cth@carlh.net>
Mon, 14 Sep 2015 21:49:36 +0000 (22:49 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 14 Sep 2015 21:49:36 +0000 (22:49 +0100)
71 files changed:
hacks/check_cout [new file with mode: 0644]
src/lib/analyse_audio_job.cc
src/lib/audio_content.cc
src/lib/audio_mapping.cc
src/lib/colour_conversion.cc
src/lib/config.cc
src/lib/content.cc
src/lib/curl_uploader.cc
src/lib/dcp_content.cc
src/lib/dcp_decoder.cc
src/lib/dcp_examiner.cc
src/lib/dcp_subtitle_decoder.cc
src/lib/examine_content_job.cc
src/lib/ffmpeg.cc
src/lib/ffmpeg_content.cc
src/lib/ffmpeg_examiner.cc
src/lib/ffmpeg_subtitle_stream.cc
src/lib/file_group.cc
src/lib/file_log.cc
src/lib/filter_graph.cc
src/lib/image_content.cc
src/lib/image_proxy.cc
src/lib/j2k_image_proxy.cc
src/lib/job.cc
src/lib/json_server.cc
src/lib/kdm.cc
src/lib/magick_image_proxy.cc
src/lib/player.cc
src/lib/player_video.cc
src/lib/playlist.cc
src/lib/position_image.cc
src/lib/render_subtitles.cc
src/lib/resampler.cc
src/lib/server_finder.cc
src/lib/single_stream_audio_content.cc
src/lib/sndfile_content.cc
src/lib/subrip_content.cc
src/lib/subrip_decoder.cc
src/lib/subtitle_content.cc
src/lib/subtitle_decoder.cc
src/lib/update_checker.cc
src/lib/video_content.cc
src/lib/video_content_scale.cc
src/lib/video_decoder.cc
src/lib/writer.cc
src/tools/dcpomatic_kdm.cc
src/tools/dcpomatic_server.cc
src/wx/audio_dialog.cc
src/wx/audio_mapping_view.cc
src/wx/audio_panel.cc
src/wx/colour_conversion_editor.cc
src/wx/content_colour_conversion_dialog.cc
src/wx/content_menu.cc
src/wx/content_panel.cc
src/wx/dcp_panel.cc
src/wx/dolby_certificate_dialog.cc
src/wx/doremi_certificate_dialog.cc
src/wx/fonts_dialog.cc
src/wx/job_manager_view.cc
src/wx/kdm_dialog.cc
src/wx/key_dialog.cc
src/wx/preset_colour_conversion_dialog.cc
src/wx/screen_dialog.cc
src/wx/system_font_dialog.cc
src/wx/timecode.cc
src/wx/timeline.cc
src/wx/timeline_dialog.cc
src/wx/timing_panel.cc
src/wx/video_panel.cc
src/wx/video_waveform_dialog.cc
src/wx/video_waveform_plot.cc

diff --git a/hacks/check_cout b/hacks/check_cout
new file mode 100644 (file)
index 0000000..67053ca
--- /dev/null
@@ -0,0 +1,32 @@
+#!/usr/bin/python
+
+import os
+import shutil
+
+for root, dirs, files in os.walk('src'):
+    for name in files:
+        if name.endswith('.cc'):
+            include = False
+            using = False
+            with open(os.path.join(root, name)) as f:
+                for l in f.readlines():
+                    l = l.strip()
+                    if l == 'using std::cout;':
+                        using = True
+                    if l == '#include <iostream>':
+                        include = True
+            if (not include) and using:
+                g = open('tmp', 'w')
+                with open(os.path.join(root, name)) as f:
+                    last_was_include = False
+                    done = False
+                    for l in f.readlines():
+                        if last_was_include and l == '\n' and not done:
+                            print>>g,'#include <iostream>'
+                            last_was_include = False
+                            done = True
+                        elif l.startswith('#include'):
+                            last_was_include = True
+                        print>>g,l,
+                g.close()
+                shutil.move('tmp', os.path.join(root, name))
index 6c142f5cf773a4e4f7b76752bffe38afb4fb7792..f0fd351b45c2223a5b4923fb1a7c05630c4cd654 100644 (file)
@@ -26,6 +26,7 @@
 #include "player.h"
 #include "playlist.h"
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 39d93d375cb741217b24601b4933689505aa04ee..c67a66ed8a00f669e768a32db5be27626524eb19 100644 (file)
@@ -27,6 +27,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 725109ae66031cd0d43583f964ce86fde3a96b09..4e2e29363516f6a8b1bcb52772799de022ee0e32 100644 (file)
@@ -23,6 +23,7 @@
 #include "raw_convert.h"
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 using std::list;
 using std::cout;
index 29783e2892d8b8ad274ac48ba8ce468329495cb3..6603e21e68b2e13ef0c35c073c925feda928eec6 100644 (file)
@@ -29,6 +29,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 20386368e9aa1d96d5b3d46b1c1b0c1ee85302f7..6862cc565550f6af5e8e3cd13b005260cbb12450 100644 (file)
@@ -40,6 +40,7 @@
 #include <boost/foreach.hpp>
 #include <cstdlib>
 #include <fstream>
+#include <iostream>
 
 #include "i18n.h"
 
index a8e592ba75d88d2d19b054cbbba5c9a93ac72499..8b611f6b63c0385794979b1d740a8c773d9d00f4 100644 (file)
@@ -33,6 +33,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/thread/mutex.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index b05608536bccdeccb59c4926915961a2200af110..d996fde5365c86c50ff9741c1391989ebd363b42 100644 (file)
@@ -22,6 +22,7 @@
 #include "config.h"
 #include "cross.h"
 #include "compose.hpp"
+#include <iostream>
 
 #include "i18n.h"
 
index 3c3d4983ee33a960bcbfe4ced86b17b6952b874e..549515400426b3148fa5d4779e22f399297066bc 100644 (file)
@@ -27,6 +27,7 @@
 #include <dcp/exceptions.h>
 #include <libxml++/libxml++.h>
 #include <iterator>
+#include <iostream>
 
 #include "i18n.h"
 
index 2bdf6a8e98547840c268a6ff748fdb81ae3e24c8..1c3285d2dcac223a1156e9df79e7087c735a65a4 100644 (file)
@@ -35,6 +35,7 @@
 #include <dcp/stereo_picture_frame.h>
 #include <dcp/sound_frame.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::cout;
index ce5ccf478480a75a71fdd2f4ba91b741328f2077..fe2660d48508834c38f9b6c678c5259d3d9162cd 100644 (file)
@@ -33,6 +33,7 @@
 #include <dcp/stereo_picture_asset.h>
 #include <dcp/stereo_picture_frame.h>
 #include <dcp/sound_asset.h>
+#include <iostream>
 
 #include "i18n.h"
 
index fd801da2f53dc6f2a0bcb86953d15e6b16ef1d8a..1c6b973d683913722e4b6cecb2570bed205b0f21 100644 (file)
@@ -20,6 +20,7 @@
 #include "dcp_subtitle_decoder.h"
 #include "dcp_subtitle_content.h"
 #include <dcp/interop_subtitle_asset.h>
+#include <iostream>
 
 using std::list;
 using std::cout;
index 238c89e66763a9390c8f9515701017eb1bb25e4f..42aad981c897965fdd1145ca9831853f9a66c916 100644 (file)
@@ -22,6 +22,7 @@
 #include "log.h"
 #include "content.h"
 #include "film.h"
+#include <iostream>
 
 #include "i18n.h"
 
index bba6424847855f9a603d13ddcd3a245be988ddb5..8fa03fdffb552f3ddbd49042df0d41d084d5d6ed 100644 (file)
@@ -32,6 +32,7 @@ extern "C" {
 #include <libswscale/swscale.h>
 }
 #include <boost/algorithm/string.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 53982db10f6068478ec6b9395a89f48366cd6ab0..84e474a4b44ec7c23a16fd4a1115ff25c766a1bc 100644 (file)
@@ -38,6 +38,7 @@ extern "C" {
 }
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 6ed7b06fea050cc33f04763978283025456fbb9e..576782d0bd0d290b447a2e7b000d95d0559ea77d 100644 (file)
@@ -30,6 +30,7 @@ extern "C" {
 #include "ffmpeg_subtitle_stream.h"
 #include "util.h"
 #include "safe_stringstream.h"
+#include <iostream>
 
 #include "i18n.h"
 
index 8b1baf724f307038ffdd37047ea6772df1c85465..27099b0f34ccf000b3d93179b4cad40c8f2c63ed 100644 (file)
@@ -21,6 +21,7 @@
 #include "raw_convert.h"
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::string;
 using std::map;
index 6f6a5a9162245f85ecb81a6178929c5782b3ff99..5cfe021192ec9d3adf86150280fd849dab4fa98d 100644 (file)
@@ -26,6 +26,7 @@
 #include "file_group.h"
 #include "exceptions.h"
 #include "cross.h"
+#include <iostream>
 
 using std::vector;
 using std::cout;
index 599211d10aaefdcc952e2189683bf605411840ba..b3c9797c9e8949a926a034732d25c55fa897f666 100644 (file)
@@ -20,6 +20,7 @@
 #include "file_log.h"
 #include "cross.h"
 #include <cstdio>
+#include <iostream>
 
 using std::cout;
 using std::string;
index 817459bcc3a9fd9ce05fbcf598bed723b1d98378..a8159350994f2a429740f8f4d16231e4512ff0b0 100644 (file)
@@ -35,6 +35,7 @@ extern "C" {
 #include <libavfilter/buffersink.h>
 #include <libavformat/avio.h>
 }
+#include <iostream>
 
 #include "i18n.h"
 
index 3d35b4eeb1a5b5a977df4700874d937c83ef796b..d62954f40f9cda054248ebf0ac02f1999b578461 100644 (file)
@@ -28,6 +28,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index c803e6bd06601e8cf7ab6b808a86acc3c27b88d2..2e9e8caafc0ba841db0f347a87903fc7aaea240f 100644 (file)
@@ -26,6 +26,7 @@
 #include "cross.h"
 #include <dcp/util.h>
 #include <libcxml/cxml.h>
+#include <iostream>
 
 #include "i18n.h"
 
index 7877eca178187b7227dce592840b598425912d79..303792b80f406e8e8417e401ed646f3410d10f81 100644 (file)
@@ -29,6 +29,7 @@
 #include <dcp/rgb_xyz.h>
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 #include "i18n.h"
 
index 37bf462fca0a3b1ffb65063a008f9b572df18982..c4632a83c6e9e9dbb036de90a3598d2abe5cd02e 100644 (file)
@@ -31,6 +31,7 @@
 #include <dcp/exceptions.h>
 #include <boost/thread.hpp>
 #include <boost/filesystem.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index e06ee22c3d0b75f44fd82a5b5293cb0970941646..c7a3ca144e4c5974c7e632ba970955c6eb9f103c 100644 (file)
@@ -26,6 +26,7 @@
 #include "util.h"
 #include "film.h"
 #include "transcode_job.h"
+#include <iostream>
 
 using std::string;
 using std::stringstream;
index d62f1e66035494696bc4c6a11f1aa0440b57bca2..f0ba8fb85022ac8080594767eb5b61cf127cc39d 100644 (file)
@@ -32,6 +32,7 @@
 #include <dcp/types.h>
 #include <boost/shared_ptr.hpp>
 #include <list>
+#include <iostream>
 
 using std::list;
 using std::string;
index 6b1436918e21b286b39b5b3e9018dea010751f0d..5a0ce94bf743ee5a205e1e2a350e4f5d8ae4c63b 100644 (file)
@@ -25,6 +25,7 @@
 #include "compose.hpp"
 #include <Magick++.h>
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 #include "i18n.h"
 
index acf977def557f4b9873a0117d9b92d88f889138f..f5d851c96f1b5f47a637384b25b15ed4311d82a6 100644 (file)
@@ -49,6 +49,7 @@
 #include <boost/foreach.hpp>
 #include <stdint.h>
 #include <algorithm>
+#include <iostream>
 
 #include "i18n.h"
 
index ad6219d4f12f4f496ae0c7ee2589445fad68ca31..3e361e45de48dc001f5e2e860a694e3b642a5758 100644 (file)
@@ -24,6 +24,7 @@
 #include "film.h"
 #include "raw_convert.h"
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 using std::string;
 using std::cout;
index 4aff1015d53381652d5a15de877f90b7019d1a63..7c8ca0530a8f357f911df8d5b96e0b502a1ca3a8 100644 (file)
@@ -33,6 +33,7 @@
 #include <libxml++/libxml++.h>
 #include <boost/shared_ptr.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 47e8f1a987e7d08fca0cd62e1542231841ed2019..544f08defd4ad75cc603835e7292290a37702ea0 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "position_image.h"
 #include "image.h"
+#include <iostream>
 
 using std::cout;
 
index 4158b747314692396de672c254e9778c8fdc3e95..e22c8c44fb19acac05131422d4302ccafb0d2488 100644 (file)
@@ -25,6 +25,7 @@
 #include <cairomm/cairomm.h>
 #include <pangomm.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::cout;
index ba57deb6352bef03de31e21c03153a4c12ac9ac2..c18bad3ac9eccfcb7b1b9c5ea6fc286207b94d89 100644 (file)
@@ -23,6 +23,7 @@
 #include "compose.hpp"
 #include "dcpomatic_assert.h"
 #include <samplerate.h>
+#include <iostream>
 
 #include "i18n.h"
 
index 3683d7bd0add8db1a8333b110a72a5ff5141df0e..4b532f98129d4f70386040d9dfc182761973312f 100644 (file)
@@ -27,6 +27,7 @@
 #include "raw_convert.h"
 #include <libcxml/cxml.h>
 #include <boost/lambda/lambda.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 617989d207efbbddcb0e2a782f0b1efa6daf2acc..05b055865fbef18a414f29b744f6a7bbcce441e6 100644 (file)
@@ -22,6 +22,7 @@
 #include "film.h"
 #include "raw_convert.h"
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 #include "i18n.h"
 
index 2d6330485569856d1454774bd9239c0a5b578302..dc26a1a7e17655f6f91521862a86cd8f6ac67bc7 100644 (file)
@@ -28,6 +28,7 @@
 #include "raw_convert.h"
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 #include "i18n.h"
 
index ac982c9ed17457be8df058e72a61e47d14142581..0d1bd748db3c1a9a075e9aa841577f69df2198b4 100644 (file)
@@ -24,6 +24,7 @@
 #include "font.h"
 #include "raw_convert.h"
 #include <libxml++/libxml++.h>
+#include <iostream>
 
 #include "i18n.h"
 
index c53e8960228910014a96ff3deca91c253aedfe0c..2de27248111eb17eaddd8f93f2afcf095522224d 100644 (file)
@@ -20,6 +20,7 @@
 #include <dcp/subtitle_string.h>
 #include "subrip_decoder.h"
 #include "subrip_content.h"
+#include <iostream>
 
 using std::list;
 using std::vector;
index 2aa982e168e8209fec388933ba291dbf0ff8b983..da3b97e2ffd3942f87f452181b97fe5315de8f63 100644 (file)
@@ -26,6 +26,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 5336686165d6dc12dbe94a1b15fb237f42dbafcf..a95964f4773602f0acfe88b4d468909bfce0fc81 100644 (file)
@@ -21,6 +21,7 @@
 #include "subtitle_content.h"
 #include <boost/shared_ptr.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::cout;
index 52dfce7f782ce38ef8405f73fdf8337c90c94daa..4ee728fdeb6252ecad7f9f6bfecc52bc744e94bf 100644 (file)
@@ -27,6 +27,7 @@
 #include <curl/curl.h>
 #include <boost/algorithm/string.hpp>
 #include <string>
+#include <iostream>
 
 #define BUFFER_SIZE 1024
 
index a0f1da9aae5ac88c56f680fda4626648281d37f9..5a2bef1a08fa7835069a7bd3f3d951ede9d03bac 100644 (file)
@@ -34,6 +34,7 @@
 #include <dcp/colour_matrix.h>
 #include <libxml++/libxml++.h>
 #include <iomanip>
+#include <iostream>
 
 #include "i18n.h"
 
index aae135311c9a23375ff6a16cdfde28c219799549..775b3d9b71ac496194318af2198717e51f0bafae 100644 (file)
@@ -25,6 +25,7 @@
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/optional.hpp>
+#include <iostream>
 
 #include "i18n.h"
 
index 5754cb1caf712ae3314eeb4124d247011a0c1cd5..e87fa2eb1dec8d3b07b60273da075662867322e5 100644 (file)
@@ -23,6 +23,7 @@
 #include "film.h"
 #include "log.h"
 #include "compose.hpp"
+#include <iostream>
 
 #include "i18n.h"
 
index ccf47ed340f09115f17f7e9c51fbe213cf91eabb..1cc8ad3ccc87ac857940e9880d1f14af68bd2731 100644 (file)
@@ -51,6 +51,7 @@
 #include <boost/foreach.hpp>
 #include <fstream>
 #include <cerrno>
+#include <iostream>
 
 #include "i18n.h"
 
index 6f85f612760a5e567c6724fe1aff14009660e7b0..2c274de423ba0048ce759c5f08c1bcba500f5c19 100644 (file)
@@ -29,6 +29,7 @@
 #include "lib/config.h"
 #include "lib/exceptions.h"
 #include "lib/safe_stringstream.h"
+#include <iostream>
 
 using std::string;
 using std::cout;
index 7ec081cfaf718b6813b859f19839d093609e9309..382f867cac214bd72dc245cab00f2670a15f651a 100644 (file)
@@ -25,6 +25,7 @@
 #include <wx/taskbar.h>
 #include <wx/icon.h>
 #include <boost/thread.hpp>
+#include <iostream>
 
 using std::cout;
 using std::string;
index 27b34540611dd76cf94a0af46b1649022e1efe20..ebe8032581df5af7363f237d0010da1b6aae6722 100644 (file)
@@ -27,6 +27,7 @@
 #include "lib/job_manager.h"
 #include <libxml++/libxml++.h>
 #include <boost/filesystem.hpp>
+#include <iostream>
 
 using std::cout;
 using boost::shared_ptr;
index b031fcd8d0c09a5b172f51ccbc645f07ea83c44d..ce800ff81e58fab57e54927956dd1192b1c04fe4 100644 (file)
@@ -32,6 +32,7 @@
 #include <wx/renderer.h>
 #include <wx/grid.h>
 #include <boost/lexical_cast.hpp>
+#include <iostream>
 
 using std::cout;
 using std::list;
index adaf826f453af12a69de3c815e4ddcee43fb1e86..b89cbb01fc34f7b1cc30ef3670a7ac7a6a78d3ef 100644 (file)
@@ -30,6 +30,7 @@
 #include <wx/spinctrl.h>
 #include <boost/lexical_cast.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::vector;
 using std::cout;
index d4a6bc20a208fec15ac8871b97c4b7288df399f7..1d164cb334e4ada2029af231d7511cdb08cb72dd 100644 (file)
@@ -27,6 +27,7 @@
 #include <wx/spinctrl.h>
 #include <wx/gbsizer.h>
 #include <boost/lexical_cast.hpp>
+#include <iostream>
 
 using std::string;
 using std::cout;
index 45d19d78d616b80a279a896f7ca0f18c02a890ee..9713cde1b0f555713f17a7ee5a5c52bd1cd69069 100644 (file)
@@ -25,6 +25,7 @@
 #include "colour_conversion_editor.h"
 #include <wx/statline.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::string;
 using std::vector;
index 56504c9920c8eabc94b63d23a9e621dcec5d511b..c643602bdca548828e4719145119092d1ded8ccc 100644 (file)
@@ -35,6 +35,7 @@
 #include <wx/wx.h>
 #include <wx/dirdlg.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::cout;
 using std::vector;
index 066c3e93cadba2a126868391f0213daa7ec73e87..2552f50987c8136c125239674807a5ff1c1150c9 100644 (file)
@@ -38,6 +38,7 @@
 #include <wx/listctrl.h>
 #include <boost/filesystem.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 #include "lib/image_filename_sorter.cc"
 
index 31c019c934e405c2dc9513c81432ad3f68338820..a5105bad9d34a5f571e49659020e46e6f2b96be8 100644 (file)
@@ -37,6 +37,7 @@
 #include <wx/spinctrl.h>
 #include <boost/lexical_cast.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::cout;
 using std::list;
index 72a70b7e103fa573128375a88c4a6133c9a8c76d..58ad73e0d2a25c0635ac7e208e78719a89e893f0 100644 (file)
@@ -25,6 +25,7 @@
 #include <curl/curl.h>
 #include <boost/algorithm/string.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::string;
index 74f19fcc902a7b81286e06e23ee4d21536c18d17..c4c2115f04e6de01e219caaa6ae1e237e33418a8 100644 (file)
@@ -25,6 +25,7 @@
 #include "lib/internet.h"
 #include "doremi_certificate_dialog.h"
 #include "wx_util.h"
+#include <iostream>
 
 using std::string;
 using std::cout;
index b880c51670f07c55967a352bc7d81b12d3942de0..de53a3c2830a83849ea1d41a1ba813d42c98baa8 100644 (file)
@@ -24,6 +24,7 @@
 #include "lib/subtitle_content.h"
 #include <wx/wx.h>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::string;
index 2dfb4113168259ac9a9181fba79db0f9bf206fd5..05dff36c504fbf0a7c910d419964cebf6e723e4b 100644 (file)
@@ -28,6 +28,7 @@
 #include "lib/util.h"
 #include "lib/exceptions.h"
 #include "lib/compose.hpp"
+#include <iostream>
 
 using std::string;
 using std::list;
index 7046c160e58b4f1513d694119db27175cdb948c9..f6baecdf2826d06de594e1bd02f424477d963c7d 100644 (file)
@@ -36,6 +36,7 @@
 #include <wx/timectrl.h>
 #include <wx/stdpaths.h>
 #include <wx/listctrl.h>
+#include <iostream>
 
 using std::string;
 using std::map;
index 01f7e44a891337335bf56bbe29fc1057127e9569..d8005a600bdaaf1e320dfec32969814afdac40a0 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "key_dialog.h"
 #include "wx_util.h"
+#include <iostream>
 
 using std::cout;
 
index ce6897ecdb63cc70d292ff731dee8048f283c6fa..9656ff5dcaefead6ad0398f1f581d61f1bec0ef0 100644 (file)
@@ -22,6 +22,7 @@
 #include "wx_util.h"
 #include "preset_colour_conversion_dialog.h"
 #include "colour_conversion_editor.h"
+#include <iostream>
 
 using std::string;
 using std::cout;
index 5f676bda7a3c5ddf2025870c2ac3c8b6ccbf2201..66e37a4cf94d58225b199fa8a88cef93fe19de22 100644 (file)
@@ -26,6 +26,7 @@
 #include "wx_util.h"
 #include "doremi_certificate_dialog.h"
 #include "dolby_certificate_dialog.h"
+#include <iostream>
 
 using std::string;
 using std::cout;
index 62fd046600006609c851f06258f0a9f1f75c2fea..3921be728b6265cdbfec00d18e92889fb3dddb35 100644 (file)
@@ -22,6 +22,7 @@
 #include <wx/listctrl.h>
 #include <boost/filesystem.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::cout;
 using std::string;
index 8029d2f6aef6677ceb3937aa752f818135ccf6a3..40a22201e3364cbb46e971e7f08a7cfa24bcc7a4 100644 (file)
@@ -21,6 +21,7 @@
 #include "timecode.h"
 #include "wx_util.h"
 #include <boost/lexical_cast.hpp>
+#include <iostream>
 
 using std::string;
 using std::cout;
index 12fd738eb5807963c407ab005e77808d57d3cd76..c1afdd369cfbb8d231c93304289e2843c01de7a5 100644 (file)
@@ -34,6 +34,7 @@
 #include <boost/weak_ptr.hpp>
 #include <boost/foreach.hpp>
 #include <list>
+#include <iostream>
 
 using std::list;
 using std::cout;
index 8fb651e5ce2800a606428d7b33edb4073bf8e5d0..9caa629338e34a7110fdacf849041fb206e4fad4 100644 (file)
@@ -24,6 +24,7 @@
 #include "timeline_dialog.h"
 #include "wx_util.h"
 #include "content_panel.h"
+#include <iostream>
 
 using std::list;
 using std::cout;
index 1497c23229badf153aa24e06404fe28ac4b96d5c..6ebd83d73e332e4beb14b26487672f08645f3b69 100644 (file)
@@ -27,6 +27,7 @@
 #include "content_panel.h"
 #include <boost/foreach.hpp>
 #include <set>
+#include <iostream>
 
 using std::cout;
 using std::string;
index f85fdae7be81fdba325d39644291e6b94a235426..86a738bca16d66a412c1fcfc34b54e2bbf5af3e4 100644 (file)
@@ -33,6 +33,7 @@
 #include <wx/spinctrl.h>
 #include <boost/foreach.hpp>
 #include <set>
+#include <iostream>
 
 using std::vector;
 using std::string;
index 976c4e2ae85d64cf21772b556843a2b990562dc7..9c2a65b92828fc52eb4aae9850a1c2daac29f47d 100644 (file)
@@ -22,6 +22,7 @@
 #include "film_viewer.h"
 #include "wx_util.h"
 #include <boost/bind.hpp>
+#include <iostream>
 
 using std::cout;
 using boost::bind;
index 8c13af7a51f8f98ba5e28a3a737eaacf247e8f55..a9100b4b48bf2661f1e468ddf698fcd02fcb6895 100644 (file)
@@ -27,6 +27,7 @@
 #include <wx/rawbmp.h>
 #include <wx/graphics.h>
 #include <boost/bind.hpp>
+#include <iostream>
 
 using std::cout;
 using std::min;