]> git.stg.codes - stg.git/commitdiff
Add <ostream> to fix missing header in xmlrpc-c
authorMaxim Mamontov <faust.madf@gmail.com>
Thu, 9 Feb 2012 08:47:57 +0000 (10:47 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Thu, 9 Feb 2012 08:47:57 +0000 (10:47 +0200)
projects/stargazer/plugins/configuration/rpcconfig/admins_methods.cpp
projects/stargazer/plugins/configuration/rpcconfig/info_methods.cpp
projects/stargazer/plugins/configuration/rpcconfig/messages_methods.cpp
projects/stargazer/plugins/configuration/rpcconfig/rpcconfig.cpp
projects/stargazer/plugins/configuration/rpcconfig/tariff_helper.cpp
projects/stargazer/plugins/configuration/rpcconfig/tariffs_methods.cpp

index 3607a806909fa90dda143c9269fabf68d9dbdb31..0016babe440f209812fd06499bfb32028a5e1ab8 100644 (file)
@@ -1,3 +1,5 @@
+#include <ostream> // xmlrpc-c devs have missed something :)
+
 #include "stg/common.h"
 #include "admins_methods.h"
 #include "rpcconfig.h"
index b971c638ad3b90304a6212ec55dd2a39fa5ef599..c4684c1bdea4f535ef6543822376eff7f6df497d 100644 (file)
@@ -1,5 +1,7 @@
 #include <sys/utsname.h>
 
+#include <ostream> // xmlrpc-c devs have missed something :)
+
 #include "stg/version.h"
 #include "stg/common.h"
 #include "info_methods.h"
index 14319aa19e2490cae5746da31bdcbac3bd597bed..e4d05636f67a0015c7641b46546eca9c37c46940 100644 (file)
@@ -1,3 +1,5 @@
+#include <ostream> // xmlrpc-c devs have missed something :)
+
 #include "stg/message.h"
 #include "stg/common.h"
 #include "utils.h"
index d4419b40e84c528e690816ec516acae8c5db5831..56a188f1cbb2aa8bb1af2cef1b9320de81a8dd8f 100644 (file)
@@ -2,6 +2,7 @@
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <unistd.h>
 
 #include <cstdlib>
 #include <csignal>
@@ -9,6 +10,7 @@
 #include <cstring>
 #include <vector>
 #include <algorithm>
+#include <ostream> // xmlrpc-c devs have missed something :)
 
 #include "stg/common.h"
 #include "stg/admin.h"
index 91f60062cb48e3b08ef609b386b38f239d5e0d62..fad12886f651d870866a459225efbf5e591416b9 100644 (file)
@@ -1,3 +1,5 @@
+#include <ostream> // xmlrpc-c devs have missed something :)
+
 #include "tariff_helper.h"
 
 void TARIFF_HELPER::GetTariffInfo(xmlrpc_c::value * info) const
index 1643fbef2b2e2c667bd1771bf8318dad763dcdd0..77d73b02091d379cca4e85565756ea8f736d58c7 100644 (file)
@@ -1,3 +1,5 @@
+#include <ostream> // xmlrpc-c devs have missed something :)
+
 #include "tariffs_methods.h"
 #include "rpcconfig.h"
 #include "tariff_helper.h"