Changeset - e37670c7477a
[Not reviewed]
0 2 0
Vitaly Takmazov - 10 years ago 2015-11-19 08:53:35
vitalyster@gmail.com
fix include paths
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
plugin/cpp/networkplugin.cpp
Show inline comments
 
@@ -9,27 +9,27 @@
 
 * (at your option) any later version.
 
 *
 
 * This program is distributed in the hope that it will be useful,
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
 * GNU General Public License for more details.
 
 *
 
 * You should have received a copy of the GNU General Public License
 
 * along with this program; if not, write to the Free Software
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/networkplugin.h"
 
#include "transport/memoryusage.h"
 
#include "transport/logging.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/Logging.h"
 

	
 
#include <sstream>
 

	
 
#ifndef WIN32
 
#include <arpa/inet.h>
 
#include <sys/types.h>
 
#include <unistd.h>
 
#else 
 
#include <winsock2.h>
 
#include <stdint.h>
 
#include <process.h>
 
#define getpid _getpid
spectrum/src/main.cpp
Show inline comments
 
#include "transport/Config.h"
 
#include "transport/Transport.h"
 
#include "transport/FileTransferManager.h"
 
#include "transport/UserManager.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/PQXXBackend.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "transport/AdminInterface.h"
 
#include "transport/UsersReconnecter.h"
 
#include "transport/Util.h"
 
#include "transport/Logging.h"
 
#include "frontends/xmpp/XMPPFrontend.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
 
#include "Swiften/Network/BoostNetworkFactories.h"
 
#include <boost/filesystem.hpp>
 
#include <boost/algorithm/string.hpp>
0 comments (0 inline, 0 general)