Skip to content
Snippets Groups Projects
Commit 99222116 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 1361: Added missing #include's to make things compile with GCC 4.4

parent 02732ce1
No related branches found
No related tags found
No related merge requests found
Showing
with 16 additions and 1 deletion
......@@ -25,6 +25,7 @@
#include <unistd.h>
#include <climits>
#include <cstdio>
#include <cstring>
#include "APL/APLCommon/APLUtilities.h"
......
......@@ -26,6 +26,7 @@
//# Includes
#include <blitz/array.h>
#include <Common/LofarLogger.h>
#include <Common/StringUtil.h>
#include <Common/StreamUtil.h>
#include <Common/lofar_vector.h>
#include <APL/APLCommon/AntennaField.h>
......
......@@ -30,6 +30,7 @@
#include <Common/LofarLogger.h>
#include <Common/lofar_fstream.h>
#include <Common/SystemUtil.h>
#include <cstring>
#include "ACRequestPool.h"
namespace LOFAR {
......
......@@ -33,6 +33,7 @@
#include <Common/lofar_list.h>
#include <GCF/TM/GCF_Control.h>
#include <log4cplus/helpers/socketbuffer.h>
#include <log4cplus/spi/loggingevent.h>
// Avoid 'using namespace' in headerfiles
......
......@@ -23,6 +23,7 @@
#include <lofar_config.h>
#include <Common/LofarLogger.h>
#include <Common/LofarConstants.h>
#include <Common/StringUtil.h>
#include <APL/IBS_Protocol/Beamlet2SubbandMap.h>
#include <APL/RTCCommon/MarshallBlitz.h>
......
......@@ -23,6 +23,7 @@
#include <lofar_config.h>
#include <Common/LofarLogger.h>
#include <Common/StringUtil.h>
#include <APL/ICAL_Protocol/SpectralWindow.h>
......
......@@ -24,6 +24,7 @@
#define BEAM_H_
#include <lofar_config.h>
#include <Common/lofar_vector.h>
#include <Common/lofar_string.h>
#include <Common/lofar_bitset.h>
#include <Common/lofar_list.h>
......
......@@ -25,6 +25,7 @@
#include <Common/LofarLocators.h>
#include <Common/LofarConstants.h>
#include <Common/LofarLocators.h>
#include <Common/StringUtil.h>
#include "StatCal.h"
#include <blitz/array.h>
......
......@@ -25,6 +25,7 @@
#include <Common/LofarLogger.h>
#include <Common/LofarLocators.h>
#include <Common/lofar_complex.h>
#include <Common/StringUtil.h>
#include <APL/APLCommon/AntennaField.h>
#include <APL/APLCommon/AntennaSets.h>
#include <APL/CAL_Protocol/SpectralWindow.h>
......
......@@ -25,6 +25,7 @@
#include <Common/LofarLogger.h>
#include <Common/LofarLocators.h>
#include <Common/lofar_complex.h>
#include <Common/StringUtil.h>
#include <APL/APLCommon/AntennaField.h>
#include <APL/APLCommon/AntennaSets.h>
#include <APL/CAL_Protocol/SpectralWindow.h>
......
......@@ -27,6 +27,7 @@
#include <Common/LofarTypes.h>
#include <blitz/array.h>
#include <cstring>
// SIZE blitz::array<...>
#define MSH_ARRAY_SIZE(array, datatype) \
......
......@@ -22,15 +22,17 @@
//#
#include <lofar_config.h>
#include <Common/LofarLogger.h>
#include <Common/SystemUtil.h>
#include <time.h>
#include <unistd.h>
#include <cstdio>
#include <cstring>
int main(int argc, char* argv[])
{
if (argc != 2) {
printf("Syntax: %s PVSS_data_point\n", basename(argv[0]));
printf("Syntax: %s PVSS_data_point\n", LOFAR::basename(argv[0]).c_str());
printf("Every 10 seconds a line is logged to this datapoint until program is killed");
return (1);
}
......
......@@ -34,6 +34,7 @@
#include <Common/lofar_iostream.h>
#include <Common/LofarLogger.h>
#include <Common/StringUtil.h>
#include <cstring>
using std::endl;
......
......@@ -26,6 +26,7 @@
#include <Common/hexdump.h>
#include <Common/StringUtil.h>
#include <MACIO/GCF_Event.h>
#include <cstring>
using namespace std;
......
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