From b9220e1a0fb4b2a7e363faf7f7a24293d166cd77 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Wed, 4 Mar 2009 23:47:54 +0000 Subject: Added Visual Studio 2008 projects and minor porting changes for Windows primarily removing #include git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qpid-1673@750235 13f79535-47bb-0310-9956-ffa450edef68 --- .../examples/direct/direct_declare_queues.vcproj | 374 +++++++++++++++++++++ .../examples/direct/direct_direct_producer.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/direct/direct_listener.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/direct/direct_producer.cpp | 1 - qpid/cpp/examples/direct/listener.cpp | 1 - qpid/cpp/examples/examples.sln | 213 ++++++++++++ .../failover/failover_declare_queues.vcproj | 374 +++++++++++++++++++++ .../failover/failover_replaying_sender.vcproj | 374 +++++++++++++++++++++ .../failover/failover_resuming_receiver.vcproj | 374 +++++++++++++++++++++ .../examples/fanout/fanout_fanout_producer.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/fanout/fanout_listener.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/fanout/fanout_producer.cpp | 1 - qpid/cpp/examples/fanout/listener.cpp | 1 - .../examples/pub-sub/pub_sub_topic_listener.vcproj | 374 +++++++++++++++++++++ .../pub-sub/pub_sub_topic_publisher.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/pub-sub/topic_listener.cpp | 1 - qpid/cpp/examples/pub-sub/topic_publisher.cpp | 1 - qpid/cpp/examples/qmf-console/ping.cpp | 3 +- qpid/cpp/examples/qmf-console/printevents.cpp | 2 +- .../qmf-console/qmf_console_console.vcproj | 374 +++++++++++++++++++++ .../examples/qmf-console/qmf_console_ping.vcproj | 374 +++++++++++++++++++++ .../qmf-console/qmf_console_printevents.vcproj | 374 +++++++++++++++++++++ .../qmf-console/qmf_console_queuestats.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/qmf-console/queuestats.cpp | 3 +- qpid/cpp/examples/request-response/client.cpp | 1 - .../request_response_client.vcproj | 374 +++++++++++++++++++++ .../request_response_server.vcproj | 374 +++++++++++++++++++++ qpid/cpp/examples/request-response/server.cpp | 1 - qpid/cpp/examples/tradedemo/topic_listener.cpp | 1 - qpid/cpp/examples/tradedemo/topic_publisher.cpp | 2 +- .../tradedemo/tradedemo_declare_queues.vcproj | 374 +++++++++++++++++++++ .../tradedemo/tradedemo_topic_listener.vcproj | 374 +++++++++++++++++++++ .../tradedemo/tradedemo_topic_publisher.vcproj | 374 +++++++++++++++++++++ 33 files changed, 7325 insertions(+), 13 deletions(-) create mode 100644 qpid/cpp/examples/direct/direct_declare_queues.vcproj create mode 100644 qpid/cpp/examples/direct/direct_direct_producer.vcproj create mode 100644 qpid/cpp/examples/direct/direct_listener.vcproj create mode 100644 qpid/cpp/examples/examples.sln create mode 100644 qpid/cpp/examples/failover/failover_declare_queues.vcproj create mode 100644 qpid/cpp/examples/failover/failover_replaying_sender.vcproj create mode 100644 qpid/cpp/examples/failover/failover_resuming_receiver.vcproj create mode 100644 qpid/cpp/examples/fanout/fanout_fanout_producer.vcproj create mode 100644 qpid/cpp/examples/fanout/fanout_listener.vcproj create mode 100644 qpid/cpp/examples/pub-sub/pub_sub_topic_listener.vcproj create mode 100644 qpid/cpp/examples/pub-sub/pub_sub_topic_publisher.vcproj create mode 100644 qpid/cpp/examples/qmf-console/qmf_console_console.vcproj create mode 100644 qpid/cpp/examples/qmf-console/qmf_console_ping.vcproj create mode 100644 qpid/cpp/examples/qmf-console/qmf_console_printevents.vcproj create mode 100644 qpid/cpp/examples/qmf-console/qmf_console_queuestats.vcproj create mode 100644 qpid/cpp/examples/request-response/request_response_client.vcproj create mode 100644 qpid/cpp/examples/request-response/request_response_server.vcproj create mode 100644 qpid/cpp/examples/tradedemo/tradedemo_declare_queues.vcproj create mode 100644 qpid/cpp/examples/tradedemo/tradedemo_topic_listener.vcproj create mode 100644 qpid/cpp/examples/tradedemo/tradedemo_topic_publisher.vcproj diff --git a/qpid/cpp/examples/direct/direct_declare_queues.vcproj b/qpid/cpp/examples/direct/direct_declare_queues.vcproj new file mode 100644 index 0000000000..097b0ee3bf --- /dev/null +++ b/qpid/cpp/examples/direct/direct_declare_queues.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/direct/direct_direct_producer.vcproj b/qpid/cpp/examples/direct/direct_direct_producer.vcproj new file mode 100644 index 0000000000..94f7da5e69 --- /dev/null +++ b/qpid/cpp/examples/direct/direct_direct_producer.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/direct/direct_listener.vcproj b/qpid/cpp/examples/direct/direct_listener.vcproj new file mode 100644 index 0000000000..72e9e15748 --- /dev/null +++ b/qpid/cpp/examples/direct/direct_listener.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/direct/direct_producer.cpp b/qpid/cpp/examples/direct/direct_producer.cpp index 7cca1955cf..ecc9675189 100644 --- a/qpid/cpp/examples/direct/direct_producer.cpp +++ b/qpid/cpp/examples/direct/direct_producer.cpp @@ -50,7 +50,6 @@ #include -#include #include #include diff --git a/qpid/cpp/examples/direct/listener.cpp b/qpid/cpp/examples/direct/listener.cpp index 55229df8a3..38bf24ec41 100644 --- a/qpid/cpp/examples/direct/listener.cpp +++ b/qpid/cpp/examples/direct/listener.cpp @@ -49,7 +49,6 @@ #include #include -#include #include #include diff --git a/qpid/cpp/examples/examples.sln b/qpid/cpp/examples/examples.sln new file mode 100644 index 0000000000..e7e6fcb53c --- /dev/null +++ b/qpid/cpp/examples/examples.sln @@ -0,0 +1,213 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +# $Id: VC9WorkspaceCreator.pm 1439 2008-07-10 14:31:19Z elliott_c $ +# +# This file was generated by MPC. Any changes made directly to +# this file will be lost the next time it is generated. +# +# MPC Command: +# C:\ace\MPC\mwc.pl -type vc9 -features boost=1 examples.mwc +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "direct_declare_queues", "direct\direct_declare_queues.vcproj", "{18165D4D-FECA-1BAD-4346-8C4DF2536AA5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "direct_direct_producer", "direct\direct_direct_producer.vcproj", "{9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "direct_listener", "direct\direct_listener.vcproj", "{95CE1459-FECA-1BAD-4346-8C4DF2536AA5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "failover_declare_queues", "failover\failover_declare_queues.vcproj", "{7817898E-FECA-1BAD-8026-8D997AD361D0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "failover_replaying_sender", "failover\failover_replaying_sender.vcproj", "{085D6A66-FECA-1BAD-8026-8D997AD361D0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "failover_resuming_receiver", "failover\failover_resuming_receiver.vcproj", "{B0DAF702-FECA-1BAD-8026-8D997AD361D0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fanout_fanout_producer", "fanout\fanout_fanout_producer.vcproj", "{972AB76B-FECA-1BAD-8826-8C64F27AA1C5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fanout_listener", "fanout\fanout_listener.vcproj", "{95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pub_sub_topic_listener", "pub-sub\pub_sub_topic_listener.vcproj", "{A415E66A-FECA-1BAD-A430-FD5330E23A2D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pub_sub_topic_publisher", "pub-sub\pub_sub_topic_publisher.vcproj", "{05158653-FECA-1BAD-A430-FD5330E23A2D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qmf_console_console", "qmf-console\qmf_console_console.vcproj", "{490473E1-FECA-1BAD-2E13-3FFA2B8669C3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qmf_console_ping", "qmf-console\qmf_console_ping.vcproj", "{771767FB-FECA-1BAD-2E13-3FFA2B8669C3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qmf_console_printevents", "qmf-console\qmf_console_printevents.vcproj", "{72C74624-FECA-1BAD-2E13-3FFA2B8669C3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qmf_console_queuestats", "qmf-console\qmf_console_queuestats.vcproj", "{B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "request_response_client", "request-response\request_response_client.vcproj", "{2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "request_response_server", "request-response\request_response_server.vcproj", "{46817425-FECA-1BAD-BD3A-8A467D0C5CCC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tradedemo_declare_queues", "tradedemo\tradedemo_declare_queues.vcproj", "{9057502D-FECA-1BAD-23CE-CD4095BD3C8B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tradedemo_topic_listener", "tradedemo\tradedemo_topic_listener.vcproj", "{5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tradedemo_topic_publisher", "tradedemo\tradedemo_topic_publisher.vcproj", "{E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.ActiveCfg = Debug|Win32 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.Build.0 = Debug|Win32 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.ActiveCfg = Debug|x64 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.Build.0 = Debug|x64 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.ActiveCfg = Release|Win32 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.Build.0 = Release|Win32 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.ActiveCfg = Release|x64 + {18165D4D-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.Build.0 = Release|x64 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.ActiveCfg = Debug|Win32 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.Build.0 = Debug|Win32 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.ActiveCfg = Debug|x64 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.Build.0 = Debug|x64 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.ActiveCfg = Release|Win32 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.Build.0 = Release|Win32 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.ActiveCfg = Release|x64 + {9701E0BD-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.Build.0 = Release|x64 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.ActiveCfg = Debug|Win32 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Debug|Win32.Build.0 = Debug|Win32 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.ActiveCfg = Debug|x64 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Debug|x64.Build.0 = Debug|x64 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.ActiveCfg = Release|Win32 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Release|Win32.Build.0 = Release|Win32 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.ActiveCfg = Release|x64 + {95CE1459-FECA-1BAD-4346-8C4DF2536AA5}.Release|x64.Build.0 = Release|x64 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.ActiveCfg = Debug|Win32 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.Build.0 = Debug|Win32 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.ActiveCfg = Debug|x64 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.Build.0 = Debug|x64 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.ActiveCfg = Release|Win32 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.Build.0 = Release|Win32 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Release|x64.ActiveCfg = Release|x64 + {7817898E-FECA-1BAD-8026-8D997AD361D0}.Release|x64.Build.0 = Release|x64 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.ActiveCfg = Debug|Win32 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.Build.0 = Debug|Win32 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.ActiveCfg = Debug|x64 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.Build.0 = Debug|x64 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.ActiveCfg = Release|Win32 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.Build.0 = Release|Win32 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Release|x64.ActiveCfg = Release|x64 + {085D6A66-FECA-1BAD-8026-8D997AD361D0}.Release|x64.Build.0 = Release|x64 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.ActiveCfg = Debug|Win32 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Debug|Win32.Build.0 = Debug|Win32 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.ActiveCfg = Debug|x64 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Debug|x64.Build.0 = Debug|x64 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.ActiveCfg = Release|Win32 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Release|Win32.Build.0 = Release|Win32 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Release|x64.ActiveCfg = Release|x64 + {B0DAF702-FECA-1BAD-8026-8D997AD361D0}.Release|x64.Build.0 = Release|x64 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Debug|Win32.ActiveCfg = Debug|Win32 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Debug|Win32.Build.0 = Debug|Win32 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Debug|x64.ActiveCfg = Debug|x64 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Debug|x64.Build.0 = Debug|x64 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Release|Win32.ActiveCfg = Release|Win32 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Release|Win32.Build.0 = Release|Win32 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Release|x64.ActiveCfg = Release|x64 + {972AB76B-FECA-1BAD-8826-8C64F27AA1C5}.Release|x64.Build.0 = Release|x64 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Debug|Win32.ActiveCfg = Debug|Win32 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Debug|Win32.Build.0 = Debug|Win32 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Debug|x64.ActiveCfg = Debug|x64 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Debug|x64.Build.0 = Debug|x64 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Release|Win32.ActiveCfg = Release|Win32 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Release|Win32.Build.0 = Release|Win32 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Release|x64.ActiveCfg = Release|x64 + {95E7DF39-FECA-1BAD-8826-8C64F27AA1C5}.Release|x64.Build.0 = Release|x64 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Debug|Win32.ActiveCfg = Debug|Win32 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Debug|Win32.Build.0 = Debug|Win32 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Debug|x64.ActiveCfg = Debug|x64 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Debug|x64.Build.0 = Debug|x64 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Release|Win32.ActiveCfg = Release|Win32 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Release|Win32.Build.0 = Release|Win32 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Release|x64.ActiveCfg = Release|x64 + {A415E66A-FECA-1BAD-A430-FD5330E23A2D}.Release|x64.Build.0 = Release|x64 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Debug|Win32.ActiveCfg = Debug|Win32 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Debug|Win32.Build.0 = Debug|Win32 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Debug|x64.ActiveCfg = Debug|x64 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Debug|x64.Build.0 = Debug|x64 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Release|Win32.ActiveCfg = Release|Win32 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Release|Win32.Build.0 = Release|Win32 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Release|x64.ActiveCfg = Release|x64 + {05158653-FECA-1BAD-A430-FD5330E23A2D}.Release|x64.Build.0 = Release|x64 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.ActiveCfg = Debug|Win32 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.Build.0 = Debug|Win32 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.ActiveCfg = Debug|x64 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.Build.0 = Debug|x64 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.ActiveCfg = Release|Win32 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.Build.0 = Release|Win32 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.ActiveCfg = Release|x64 + {490473E1-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.Build.0 = Release|x64 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.ActiveCfg = Debug|Win32 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.Build.0 = Debug|Win32 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.ActiveCfg = Debug|x64 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.Build.0 = Debug|x64 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.ActiveCfg = Release|Win32 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.Build.0 = Release|Win32 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.ActiveCfg = Release|x64 + {771767FB-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.Build.0 = Release|x64 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.ActiveCfg = Debug|Win32 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.Build.0 = Debug|Win32 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.ActiveCfg = Debug|x64 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.Build.0 = Debug|x64 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.ActiveCfg = Release|Win32 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.Build.0 = Release|Win32 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.ActiveCfg = Release|x64 + {72C74624-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.Build.0 = Release|x64 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.ActiveCfg = Debug|Win32 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|Win32.Build.0 = Debug|Win32 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.ActiveCfg = Debug|x64 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Debug|x64.Build.0 = Debug|x64 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.ActiveCfg = Release|Win32 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Release|Win32.Build.0 = Release|Win32 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.ActiveCfg = Release|x64 + {B21825EA-FECA-1BAD-2E13-3FFA2B8669C3}.Release|x64.Build.0 = Release|x64 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|Win32.ActiveCfg = Debug|Win32 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|Win32.Build.0 = Debug|Win32 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|x64.ActiveCfg = Debug|x64 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|x64.Build.0 = Debug|x64 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|Win32.ActiveCfg = Release|Win32 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|Win32.Build.0 = Release|Win32 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|x64.ActiveCfg = Release|x64 + {2691FE1E-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|x64.Build.0 = Release|x64 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|Win32.ActiveCfg = Debug|Win32 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|Win32.Build.0 = Debug|Win32 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|x64.ActiveCfg = Debug|x64 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Debug|x64.Build.0 = Debug|x64 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|Win32.ActiveCfg = Release|Win32 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|Win32.Build.0 = Release|Win32 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|x64.ActiveCfg = Release|x64 + {46817425-FECA-1BAD-BD3A-8A467D0C5CCC}.Release|x64.Build.0 = Release|x64 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.ActiveCfg = Debug|Win32 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.Build.0 = Debug|Win32 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.ActiveCfg = Debug|x64 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.Build.0 = Debug|x64 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.ActiveCfg = Release|Win32 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.Build.0 = Release|Win32 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.ActiveCfg = Release|x64 + {9057502D-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.Build.0 = Release|x64 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.ActiveCfg = Debug|Win32 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.Build.0 = Debug|Win32 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.ActiveCfg = Debug|x64 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.Build.0 = Debug|x64 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.ActiveCfg = Release|Win32 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.Build.0 = Release|Win32 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.ActiveCfg = Release|x64 + {5A25F2CD-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.Build.0 = Release|x64 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.ActiveCfg = Debug|Win32 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|Win32.Build.0 = Debug|Win32 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.ActiveCfg = Debug|x64 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Debug|x64.Build.0 = Debug|x64 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.ActiveCfg = Release|Win32 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Release|Win32.Build.0 = Release|Win32 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.ActiveCfg = Release|x64 + {E614CC2C-FECA-1BAD-23CE-CD4095BD3C8B}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/qpid/cpp/examples/failover/failover_declare_queues.vcproj b/qpid/cpp/examples/failover/failover_declare_queues.vcproj new file mode 100644 index 0000000000..918c02e942 --- /dev/null +++ b/qpid/cpp/examples/failover/failover_declare_queues.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/failover/failover_replaying_sender.vcproj b/qpid/cpp/examples/failover/failover_replaying_sender.vcproj new file mode 100644 index 0000000000..c1a53471e6 --- /dev/null +++ b/qpid/cpp/examples/failover/failover_replaying_sender.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/failover/failover_resuming_receiver.vcproj b/qpid/cpp/examples/failover/failover_resuming_receiver.vcproj new file mode 100644 index 0000000000..b62e1b5636 --- /dev/null +++ b/qpid/cpp/examples/failover/failover_resuming_receiver.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/fanout/fanout_fanout_producer.vcproj b/qpid/cpp/examples/fanout/fanout_fanout_producer.vcproj new file mode 100644 index 0000000000..7addd69274 --- /dev/null +++ b/qpid/cpp/examples/fanout/fanout_fanout_producer.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/fanout/fanout_listener.vcproj b/qpid/cpp/examples/fanout/fanout_listener.vcproj new file mode 100644 index 0000000000..d097779e80 --- /dev/null +++ b/qpid/cpp/examples/fanout/fanout_listener.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/fanout/fanout_producer.cpp b/qpid/cpp/examples/fanout/fanout_producer.cpp index fb16f7e8b1..decd4d314d 100644 --- a/qpid/cpp/examples/fanout/fanout_producer.cpp +++ b/qpid/cpp/examples/fanout/fanout_producer.cpp @@ -48,7 +48,6 @@ #include -#include #include #include diff --git a/qpid/cpp/examples/fanout/listener.cpp b/qpid/cpp/examples/fanout/listener.cpp index b6050ef728..cd3071c29a 100644 --- a/qpid/cpp/examples/fanout/listener.cpp +++ b/qpid/cpp/examples/fanout/listener.cpp @@ -48,7 +48,6 @@ #include #include -#include #include #include diff --git a/qpid/cpp/examples/pub-sub/pub_sub_topic_listener.vcproj b/qpid/cpp/examples/pub-sub/pub_sub_topic_listener.vcproj new file mode 100644 index 0000000000..72a6543a13 --- /dev/null +++ b/qpid/cpp/examples/pub-sub/pub_sub_topic_listener.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/pub-sub/pub_sub_topic_publisher.vcproj b/qpid/cpp/examples/pub-sub/pub_sub_topic_publisher.vcproj new file mode 100644 index 0000000000..5182b30435 --- /dev/null +++ b/qpid/cpp/examples/pub-sub/pub_sub_topic_publisher.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/pub-sub/topic_listener.cpp b/qpid/cpp/examples/pub-sub/topic_listener.cpp index fe0280cb7e..d38a806303 100644 --- a/qpid/cpp/examples/pub-sub/topic_listener.cpp +++ b/qpid/cpp/examples/pub-sub/topic_listener.cpp @@ -49,7 +49,6 @@ #include #include -#include #include #include diff --git a/qpid/cpp/examples/pub-sub/topic_publisher.cpp b/qpid/cpp/examples/pub-sub/topic_publisher.cpp index 72ba572f75..aed5f8f033 100644 --- a/qpid/cpp/examples/pub-sub/topic_publisher.cpp +++ b/qpid/cpp/examples/pub-sub/topic_publisher.cpp @@ -50,7 +50,6 @@ #include -#include #include #include diff --git a/qpid/cpp/examples/qmf-console/ping.cpp b/qpid/cpp/examples/qmf-console/ping.cpp index debca7428a..39ec0d3039 100644 --- a/qpid/cpp/examples/qmf-console/ping.cpp +++ b/qpid/cpp/examples/qmf-console/ping.cpp @@ -20,6 +20,7 @@ */ #include "qpid/console/SessionManager.h" +#include "qpid/sys/Time.h" using namespace std; using namespace qpid::console; @@ -107,7 +108,7 @@ int main_int(int /*argc*/, char** /*argv*/) cout << endl; if (result.code == 0 && iter < count - 1) - ::sleep(1); + qpid::sys::sleep(1); } } diff --git a/qpid/cpp/examples/qmf-console/printevents.cpp b/qpid/cpp/examples/qmf-console/printevents.cpp index 38d6f830aa..898972f28d 100644 --- a/qpid/cpp/examples/qmf-console/printevents.cpp +++ b/qpid/cpp/examples/qmf-console/printevents.cpp @@ -88,7 +88,7 @@ int main_int(int /*argc*/, char** /*argv*/) // Sleep indefinitely while asynchronous events are handled by the listener. // for (;;) - ::sleep(1); + qpid::sys::sleep(1); sm.delBroker(broker); return 0; diff --git a/qpid/cpp/examples/qmf-console/qmf_console_console.vcproj b/qpid/cpp/examples/qmf-console/qmf_console_console.vcproj new file mode 100644 index 0000000000..67e34fde98 --- /dev/null +++ b/qpid/cpp/examples/qmf-console/qmf_console_console.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/qmf-console/qmf_console_ping.vcproj b/qpid/cpp/examples/qmf-console/qmf_console_ping.vcproj new file mode 100644 index 0000000000..daf2fd2b74 --- /dev/null +++ b/qpid/cpp/examples/qmf-console/qmf_console_ping.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/qmf-console/qmf_console_printevents.vcproj b/qpid/cpp/examples/qmf-console/qmf_console_printevents.vcproj new file mode 100644 index 0000000000..b11f4b8d31 --- /dev/null +++ b/qpid/cpp/examples/qmf-console/qmf_console_printevents.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/qmf-console/qmf_console_queuestats.vcproj b/qpid/cpp/examples/qmf-console/qmf_console_queuestats.vcproj new file mode 100644 index 0000000000..8c0bce672c --- /dev/null +++ b/qpid/cpp/examples/qmf-console/qmf_console_queuestats.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/qmf-console/queuestats.cpp b/qpid/cpp/examples/qmf-console/queuestats.cpp index ea6dc13022..2c38777ad8 100644 --- a/qpid/cpp/examples/qmf-console/queuestats.cpp +++ b/qpid/cpp/examples/qmf-console/queuestats.cpp @@ -21,6 +21,7 @@ #include "qpid/console/ConsoleListener.h" #include "qpid/console/SessionManager.h" +#include "qpid/sys/Time.h" using namespace std; using namespace qpid::console; @@ -123,7 +124,7 @@ int main_int(int /*argc*/, char** /*argv*/) // Sleep while the listener does all the work asynchronously. // for (;;) { - sleep(1); + qpid::sys::sleep(1); } sm.delBroker(broker); diff --git a/qpid/cpp/examples/request-response/client.cpp b/qpid/cpp/examples/request-response/client.cpp index b1f8d0b587..679d1c5fc2 100644 --- a/qpid/cpp/examples/request-response/client.cpp +++ b/qpid/cpp/examples/request-response/client.cpp @@ -61,7 +61,6 @@ #include #include -#include #include #include diff --git a/qpid/cpp/examples/request-response/request_response_client.vcproj b/qpid/cpp/examples/request-response/request_response_client.vcproj new file mode 100644 index 0000000000..c40478ca7a --- /dev/null +++ b/qpid/cpp/examples/request-response/request_response_client.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/request-response/request_response_server.vcproj b/qpid/cpp/examples/request-response/request_response_server.vcproj new file mode 100644 index 0000000000..170caa0952 --- /dev/null +++ b/qpid/cpp/examples/request-response/request_response_server.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/request-response/server.cpp b/qpid/cpp/examples/request-response/server.cpp index 2d62638dff..65a4717b35 100644 --- a/qpid/cpp/examples/request-response/server.cpp +++ b/qpid/cpp/examples/request-response/server.cpp @@ -64,7 +64,6 @@ #include #include -#include #include #include diff --git a/qpid/cpp/examples/tradedemo/topic_listener.cpp b/qpid/cpp/examples/tradedemo/topic_listener.cpp index 569e558147..c488e7fb69 100644 --- a/qpid/cpp/examples/tradedemo/topic_listener.cpp +++ b/qpid/cpp/examples/tradedemo/topic_listener.cpp @@ -58,7 +58,6 @@ #include #include "qpid/client/QueueOptions.h" -#include #include #include diff --git a/qpid/cpp/examples/tradedemo/topic_publisher.cpp b/qpid/cpp/examples/tradedemo/topic_publisher.cpp index 913f2cb9fe..e22c185bc7 100644 --- a/qpid/cpp/examples/tradedemo/topic_publisher.cpp +++ b/qpid/cpp/examples/tradedemo/topic_publisher.cpp @@ -59,7 +59,7 @@ #include "qpid/client/QueueOptions.h" -#include +#include #include #include #include diff --git a/qpid/cpp/examples/tradedemo/tradedemo_declare_queues.vcproj b/qpid/cpp/examples/tradedemo/tradedemo_declare_queues.vcproj new file mode 100644 index 0000000000..483ad2e6c9 --- /dev/null +++ b/qpid/cpp/examples/tradedemo/tradedemo_declare_queues.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/tradedemo/tradedemo_topic_listener.vcproj b/qpid/cpp/examples/tradedemo/tradedemo_topic_listener.vcproj new file mode 100644 index 0000000000..2e36090602 --- /dev/null +++ b/qpid/cpp/examples/tradedemo/tradedemo_topic_listener.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qpid/cpp/examples/tradedemo/tradedemo_topic_publisher.vcproj b/qpid/cpp/examples/tradedemo/tradedemo_topic_publisher.vcproj new file mode 100644 index 0000000000..2fdbb901c0 --- /dev/null +++ b/qpid/cpp/examples/tradedemo/tradedemo_topic_publisher.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.1