[PATCH 02/10] Remove extra inbox example


Ian Bell <IBell@...>
 

From ae2e0889b3d0afa0a5bdc52583bb953947540221 Mon Sep 17 00:00:00 2001

Message-Id: <ae2e0889b3d0afa0a5bdc52583bb953947540221.1351159826.git.ibell@...>

In-Reply-To: <08a5851698e680c708a1943591af6203f3392bc0.1351159826.git.ibell@...>

References: <08a5851698e680c708a1943591af6203f3392bc0.1351159826.git.ibell@...>

From: Ian Bell <ibell@...>

Date: Thu, 25 Oct 2012 10:52:24 +0100

Subject: [PATCH 02/10] Remove extra inbox example

 

Removed the extra inbox example.  There were 2 version of teh same

example.

 

Signed-off-by: Ian Bell <ibell@...>

---

mama/c_cpp/src/examples/cpp/mamainbox2cpp.cpp    |  415 ----------------------

mama/c_cpp/src/examples/cpp/mamainbox2cpp.vcproj |  364 -------------------

2 files changed, 779 deletions(-)

 

diff --git a/mama/c_cpp/src/examples/cpp/mamainbox2cpp.cpp b/mama/c_cpp/src/examples/cpp/mamainbox2cpp.cpp

deleted file mode 100644

index 17d9f3a..0000000

--- a/mama/c_cpp/src/examples/cpp/mamainbox2cpp.cpp

+++ /dev/null

@@ -1,415 +0,0 @@

-/* $Id$

- *

- * OpenMAMA: The open middleware agnostic messaging API

- * Copyright (C) 2011 NYSE Technologies, Inc.

- *

- * This library is free software; you can redistribute it and/or

- * modify it under the terms of the GNU Lesser General Public

- * License as published by the Free Software Foundation; either

- * version 2.1 of the License, or (at your option) any later version.

- *

- * This library 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

- * Lesser General Public License for more details.

- *

- * You should have received a copy of the GNU Lesser General Public

- * License along with this library; if not, write to the Free Software

- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA

- * 02110-1301 USA

- */

-

-/**

- * This example program shows how the MAMA inbox and timer operate. It will

- * create an inbox and send a request. The example program will terminate whenever

- * a reply is received or a timeout elapses.

- *

- * Some important things to note:

- *  1. All of the objects are created on the MAMA default queue, this means that

- *     once mama_start is called all access to member variables will be from only

- *     one thread which will be the MAMA thread that dispatches from the default

- *     queue. In more advanced programs locking around member variables may be

- *     required.

- *  2. This example makes use of the overloaded create functions for the timer

- *     and the inbox which notify the caller whenever those objects are destroyed.

- *     The application will not shutdown until all these objects have been cleaned

- *     up. Note that if the mama_close or mamaQueue_destroy functions are called

- *     whenever there are open objects then the thread will block and dispatch

- *     messages from the queue until all objects have been fully destroyed.

- *  3. To obtain a list of the parameters supported by this program run it with

- *     no command line arguments or using --help.

- */

-

-/* *************************************************** */

-/* Includes. */

-/* *************************************************** */

-#include <iostream>

-#include "mama/mama.h"

-#include "mama/mamacpp.h"

-

-/* *************************************************** */

-/* Namespaces. */

-/* *************************************************** */

-using std::cerr;

-using std::cout;

-using std::endl;

-using namespace Wombat;

-

-/* *************************************************** */

-/* Structures and classes. */

-/* *************************************************** */

-

-/**

- * This structure parses the command line options and exposes them as a series

- * of public member variables.

- */

-struct CommandLineParser

-{

-    /* *************************************************** */

-    /* Public Member Variables. */

-    /* *************************************************** */

-   

-    // The topic to subscribe to

-    const char *topic;

-

-    // The name of the transport from mama.properties

-    const char *transportName;

-

-    // The name of the middleware

-    const char *middleware;

-

-    // The quietness leve

-    int quietLevel;

-

-    // The timeout value

-    mama_f64_t timeout;

-

-    /* *************************************************** */

-    /* Construction. */

-    /* *************************************************** */

-

-    CommandLineParser(void)

-    {

-        // Set up the default parameter values

-        topic           = "MAMA_INBOUND_TOPIC";

-        transportName   = "sub";

-        middleware      = "wmw";

-        quietLevel      = 0;

-        timeout         = 10;

-    }

-

-    /* *************************************************** */

-    /* Public Functions. */

-    /* *************************************************** */

-       

-    bool parse(int argc, const char **argv)

-    {

-        // Returns

-        bool ret = true;

-

-        // Check each command line parameter in turn       

-        for (int i = 1; i < argc;)

-        {

-            if (strcmp ("-s", argv[i]) == 0)

-            {

-                topic = argv[i+1];

-                i += 2;

-            }

-            else if (strcmp ("-tport", argv[i]) == 0)

-            {

-                transportName = argv[i+1];

-                i += 2;

-            }

-            else if (strcmp ("-q", argv[i]) == 0)

-            {

-                quietLevel++;

-                i++;

-            }

-            else if (strcmp ("-t", argv[i]) == 0)

-            {

-                int timeoutMs = atoi(argv[i+1]);

-                timeout = (mama_f64_t)((mama_f64_t)timeoutMs / 1000);

-                i += 2;

-            }

-            else if (strcmp( argv[i], "-v") == 0 )

-            {

-                if (mama_getLogLevel () == MAMA_LOG_LEVEL_WARN )

-                {

-                    mama_enableLogging( stderr, MAMA_LOG_LEVEL_NORMAL);

-                }

-                else if (mama_getLogLevel () == MAMA_LOG_LEVEL_NORMAL )

-                {

-                    mama_enableLogging( stderr, MAMA_LOG_LEVEL_FINE );

-                }

-                else if(mama_getLogLevel () == MAMA_LOG_LEVEL_FINE )

-                {

-                    mama_enableLogging( stderr, MAMA_LOG_LEVEL_FINER );

-                }

-                else

-                {

-                    mama_enableLogging( stderr, MAMA_LOG_LEVEL_FINEST );

-                }

-                i++;

-            }

-            else if (strcmp ("-m", argv[i]) == 0)

-            {

-                middleware = argv[i+1];

-                i += 2;              

-            }

-            else if ((strcmp(argv[i], "-?") == 0) ||

-                     ((strcmp(argv[i], "--help") == 0)))

-            {

-                /* Print the usage string. */

-                usage();

-                ret = false;

-                break;

-            }

-            else

-            {

-                cout << "Unrecognized parameter: <" << argv[i] << ">" << endl;

-                i++;

-            }

-        }

-

-        if (quietLevel < 2)

-        {

-            printf("Starting Publisher with:\n\ttopic:\t\t%s\n\ttransport:\t%s\n", topic, transportName);

-        }

-

-        return ret;

-    }

-

-    void usage(void)

-    {

-        /* The usage string is displayed if no command line parameters are specified. */

-        static const char *usageString[]  =

-        {

-            " This sample application demonstrates how to send mamaMsgs from an inbox,",

-            " and receive the reply.",

-            "",

-            " It accepts the following command line arguments:",

-            "",

-            "      [-s topic]         The topic on which to send the message. Default value",

-            "                         is \"MAMA_INBOUND_TOPIC\"",

-            "      [-tport name]      The transport parameters to be used from",

-            "                         mama.properties. Default is \"sub\"",

-            "      [-q]               Quiet mode. Suppress output.",

-            "      [-m middleware]    The middleware to use [wmw/lbm/tibrv]. Default is wmw",

-            "      [-t timeout]       The timeout after which the program will terminate, (ms).",

-            "      [-?, --help]       Print this usage information and exit.",

-            "",

-            NULL

-        };

-

-        // Print the entire usage string line by line.

-        int nextLine = 0;

-        while(usageString[nextLine]!=NULL)

-        {

-            cout << usageString[nextLine++] << endl;

-        }   

-    }

-};

-

-/**

- * This class encapsulates an inbox request and incorporates both an inbox and a timeout

- * timer.

- */

-class InboxRequest : public MamaInboxCallback, public MamaTimerCallback

-{

-    /* *************************************************** */

-    /* Private Member Variables. */

-    /* *************************************************** */

-private:

-    // The mama bridge

-    mamaBridge mBridge;

-

-    // The inbox

-    MamaInbox mInbox;

-

-    // Flag indicates if the inbox has been destroyed

-    bool mInboxDestroyed;

-

-    // The mama queue that the objects will be created on

-    MamaQueue *mQueue;

-   

-    // The timeout timer

-    MamaTimer mTimeoutTimer;

-

-    // Flag indicates if the timer has been destroyed

-    bool mTimerDestroyed;

-

-    // The mama transport

-    MamaTransport *mTransport;

-

-    /* *************************************************** */

-    /* Private Functions. */

-    /* *************************************************** */

-

-    void checkDestroy(void)

-    {

-        /* Only quit out if both the timer and the inbox have been destroyed. */

-        if(mTimerDestroyed && mInboxDestroyed)

-        {

-            /* Stop mama to unblock the main function. */

-            Mama::stop(mBridge);

-        } 

-    }

-

-public:

-

-    /* *************************************************** */

-    /* Construction and Destruction. */

-    /* *************************************************** */

-

-    InboxRequest(mamaBridge bridge, MamaQueue *queue, MamaTransport *transport)

-    {

-        // Save arguments in member variables

-        mBridge    = bridge;

-        mQueue     = queue;

-        mTransport = transport;

-

-        // Reset the flags

-        mInboxDestroyed = false;

-        mTimerDestroyed = false;

-    }

-  

-    void create(mama_f64_t timeout)

-    {

-        // Create the inbox

-        mInbox.create(mTransport, mQueue, this);

-

-        // Create the timeout timer

-        mTimeoutTimer.create(mQueue, this, timeout);                        

-    }

-

-    void sendRequest(const char *topic)

-    {       

-        // Create a publisher

-        MamaPublisher publisher;

-        publisher.create(mTransport, topic);

-       

-        // Create a mama message

-        MamaMsg message;       

-        message.create();

-           

-        // Add a field

-        message.addI32("field", 1, 32);

-

-        // Reset the timeout timer just before the request is sent

-        mTimeoutTimer.reset();

-

-        // Send the message

-        publisher.sendFromInbox(&mInbox, &message);       

-    }

-

-    virtual void onDestroy(MamaInbox *inbox, void *closure)

-    {

-        // Flag that the inbox has been destroyed

-        mInboxDestroyed = true;

-

-        // Shutdown if all objects have been destroyed

-        checkDestroy();

-    }

-

-    virtual void onDestroy(MamaTimer *timer, void *closure)

-    {

-        // Flag that the timer has been destroyed

-        mTimerDestroyed = true;

-

-        // Shutdown if all objects have been destroyed

-        checkDestroy();

-    }

-

-    virtual void onMsg(MamaInbox *inbox, MamaMsg& msg)

-    {

-        // Write out an error message

-        cout << "Received reply: " << msg.toString() << endl;

-       

-        // Now that the reply has been received destroy both the inbox and the timer.

-        mInbox.destroy();

-        mTimeoutTimer.destroy();

-    }

-

-    virtual void onError(MamaInbox *inbox, const MamaStatus &status)

-    {

-        // Write out an error message

-        cout << "Error creating inbox: " << status.toString() << endl;

-

-        // Destroy both the timer and the inbox

-        mInbox.destroy();

-        mTimeoutTimer.destroy();

-    }

-

-    virtual void onTimer(MamaTimer* timer)

-    {

-        /* Write out a message. */

-        cout << "The request has timeout out." << endl;

-

-        // A reply has not been received in time, both the inbox and timer must now be destroyed.

-        mInbox.destroy();

-        mTimeoutTimer.destroy();

-    }

-};

-

-/**

- * The main function.

- */

-int main (int argc, const char **argv)

-{

-    try

-    {

-        // Parse the command line arguments, this will simply save them into global variables

-        CommandLineParser parser;

-        bool argsValid = parser.parse(argc, argv);

-        if(argsValid)

-        {

-            // Load the mama bridge

-            mamaBridge bridge = Mama::loadBridge(parser.middleware);

-

-            // Open mama

-            Mama::open();

-            try

-            {

-                // Create the transport

-                MamaTransport transport;

-                transport.create(parser.transportName, bridge);

-               

-                // The mama default queue will be used to create all objects

-                MamaQueue *defaultQueue = Mama::getDefaultEventQueue(bridge);

-

-                // Create the inbox class that will actually send the request

-                InboxRequest request(bridge, defaultQueue, &transport);

-                request.create(parser.timeout);

-

-                // Send the inbox request

-                request.sendRequest(parser.topic);

-

-                /* Start MAMA, this function will block and not return until either a reply has been received or

-                 * the timeout elapses. In either case both timer and inbox will be destroyed before this function

-                 * returns.

-                 */

-                Mama::start(bridge);               

-            }

-

-            catch(...)

-            {

-                // Close mama

-                Mama::close();

-

-                // Rethrow the exception

-                throw;

-            }

-

-            // Close mama

-            Mama::close();

-        }

-    }

-

-    catch(MamaStatus mamaException)

-    {

-        // Write out an error message

-        cout << "An error has occurred running this example program, " << mamaException.toString() << endl;

-    }

-

-    return 0;

-}

diff --git a/mama/c_cpp/src/examples/cpp/mamainbox2cpp.vcproj b/mama/c_cpp/src/examples/cpp/mamainbox2cpp.vcproj

deleted file mode 100644

index bfc7217..0000000

--- a/mama/c_cpp/src/examples/cpp/mamainbox2cpp.vcproj

+++ /dev/null

@@ -1,364 +0,0 @@

-<?xml version="1.0" encoding="Windows-1252"?>

-<VisualStudioProject

-              ProjectType="Visual C++"

-              Version="8.00"

-              Name="mamainbox2cpp"

-              ProjectGUID="{9CBE2517-028F-4733-8979-68F29530E2F9}"

-              RootNamespace="mamainbox2cpp"

-              Keyword="Win32Proj"

-              >

-              <Platforms>

-                              <Platform

-                                              Name="Win32"

-                              />

-                              <Platform

-                                              Name="x64"

-                              />

-              </Platforms>

-              <ToolFiles>

-              </ToolFiles>

-              <Configurations>

-                              <Configuration

-                                              Name="Debug|Win32"

-                                              OutputDirectory="$(SolutionDir)$(ConfigurationName)"

-                                              IntermediateDirectory="$(ConfigurationName)"

-                                              ConfigurationType="1"

-                                              CharacterSet="1"

-                                              >

-                                              <Tool

-                                                              Name="VCPreBuildEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCustomBuildTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXMLDataGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebServiceProxyGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCMIDLTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCLCompilerTool"

-                                                              Optimization="0"

-                                                              AdditionalIncludeDirectories="&quot;$(SOLUTIONDIR)\common\c_cpp\src\c\windows&quot;;&quot;$(SOLUTIONDIR)\common\c_cpp\src\c&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\cpp&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\c&quot;"

-                                                              PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"

-                                                              MinimalRebuild="true"

-                                                              BasicRuntimeChecks="3"

-                                                              RuntimeLibrary="3"

-                                                              UsePrecompiledHeader="0"

-                                                              WarningLevel="3"

-                                                              Detect64BitPortabilityProblems="true"

-                                                              DebugInformationFormat="4"

-                                                              ForcedIncludeFiles="wombat/targetsxs.h"

-                                              />

-                                              <Tool

-                                                              Name="VCManagedResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPreLinkEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCLinkerTool"

-                                                              LinkIncremental="2"

-                                                              GenerateDebugInformation="true"

-                                                              SubSystem="1"

-                                                              TargetMachine="1"

-                                              />

-                                              <Tool

-                                                              Name="VCALinkTool"

-                                              />

-                                              <Tool

-                                                              Name="VCManifestTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXDCMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCBscMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCFxCopTool"

-                                              />

-                                              <Tool

-                                                              Name="VCAppVerifierTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebDeploymentTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPostBuildEventTool"

-                                              />

-                              </Configuration>

-                              <Configuration

-                                              Name="Release|Win32"

-                                              OutputDirectory="$(SolutionDir)$(ConfigurationName)"

-                                              IntermediateDirectory="$(ConfigurationName)"

-                                              ConfigurationType="1"

-                                              CharacterSet="1"

-                                              WholeProgramOptimization="1"

-                                              >

-                                              <Tool

-                                                              Name="VCPreBuildEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCustomBuildTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXMLDataGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebServiceProxyGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCMIDLTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCLCompilerTool"

-                                                              AdditionalIncludeDirectories="&quot;$(SOLUTIONDIR)\common\c_cpp\src\c\windows&quot;;&quot;$(SOLUTIONDIR)\common\c_cpp\src\c&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\cpp&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\c&quot;"

-                                                              PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"

-                                                              RuntimeLibrary="2"

-                                                              UsePrecompiledHeader="0"

-                                                              WarningLevel="3"

-                                                              Detect64BitPortabilityProblems="true"

-                                                              DebugInformationFormat="3"

-                                                              ForcedIncludeFiles="wombat/targetsxs.h"

-                                              />

-                                              <Tool

-                                                              Name="VCManagedResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPreLinkEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCLinkerTool"

-                                                              LinkIncremental="1"

-                                                              GenerateDebugInformation="true"

-                                                              SubSystem="1"

-                                                              OptimizeReferences="2"

-                                                              EnableCOMDATFolding="2"

-                                                              TargetMachine="1"

-                                              />

-                                              <Tool

-                                                              Name="VCALinkTool"

-                                              />

-                                              <Tool

-                                                              Name="VCManifestTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXDCMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCBscMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCFxCopTool"

-                                              />

-                                              <Tool

-                                                              Name="VCAppVerifierTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebDeploymentTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPostBuildEventTool"

-                                              />

-                              </Configuration>

-                              <Configuration

-                                              Name="Debug|x64"

-                                              OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"

-                                              IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"

-                                              ConfigurationType="1"

-                                              CharacterSet="1"

-                                              >

-                                              <Tool

-                                                              Name="VCPreBuildEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCustomBuildTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXMLDataGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebServiceProxyGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCMIDLTool"

-                                                              TargetEnvironment="3"

-                                              />

-                                              <Tool

-                                                              Name="VCCLCompilerTool"

-                                                              Optimization="0"

-                                                              AdditionalIncludeDirectories="&quot;$(SOLUTIONDIR)\common\c_cpp\src\c\windows&quot;;&quot;$(SOLUTIONDIR)\common\c_cpp\src\c&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\cpp&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\c&quot;"

-                                                              PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"

-                                                              MinimalRebuild="true"

-                                                              BasicRuntimeChecks="3"

-                                                              RuntimeLibrary="3"

-                                                              UsePrecompiledHeader="0"

-                                                              WarningLevel="3"

-                                                              Detect64BitPortabilityProblems="true"

-                                                              DebugInformationFormat="3"

-                                                              ForcedIncludeFiles="wombat/targetsxs.h"

-                                              />

-                                              <Tool

-                                                              Name="VCManagedResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPreLinkEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCLinkerTool"

-                                                              LinkIncremental="2"

-                                                              GenerateDebugInformation="true"

-                                                              SubSystem="1"

-                                                              TargetMachine="17"

-                                              />

-                                              <Tool

-                                                              Name="VCALinkTool"

-                                              />

-                                              <Tool

-                                                              Name="VCManifestTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXDCMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCBscMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCFxCopTool"

-                                              />

-                                              <Tool

-                                                              Name="VCAppVerifierTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebDeploymentTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPostBuildEventTool"

-                                              />

-                              </Configuration>

-                              <Configuration

-                                              Name="Release|x64"

-                                              OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)"

-                                              IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"

-                                              ConfigurationType="1"

-                                              CharacterSet="1"

-                                              WholeProgramOptimization="1"

-                                              >

-                                              <Tool

-                                                              Name="VCPreBuildEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCCustomBuildTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXMLDataGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebServiceProxyGeneratorTool"

-                                              />

-                                              <Tool

-                                                              Name="VCMIDLTool"

-                                                              TargetEnvironment="3"

-                                              />

-                                              <Tool

-                                                              Name="VCCLCompilerTool"

-                                                              AdditionalIncludeDirectories="&quot;$(SOLUTIONDIR)\common\c_cpp\src\c\windows&quot;;&quot;$(SOLUTIONDIR)\common\c_cpp\src\c&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\cpp&quot;;&quot;$(SOLUTIONDIR)\mama\c_cpp\src\c&quot;"

-                                                              PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"

-                                                              RuntimeLibrary="2"

-                                                              UsePrecompiledHeader="0"

-                                                              WarningLevel="3"

-                                                              Detect64BitPortabilityProblems="true"

-                                                              DebugInformationFormat="3"

-                                                              ForcedIncludeFiles="wombat/targetsxs.h"

-                                              />

-                                              <Tool

-                                                              Name="VCManagedResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCResourceCompilerTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPreLinkEventTool"

-                                              />

-                                              <Tool

-                                                              Name="VCLinkerTool"

-                                                              LinkIncremental="1"

-                                                              GenerateDebugInformation="true"

-                                                              SubSystem="1"

-                                                              OptimizeReferences="2"

-                                                              EnableCOMDATFolding="2"

-                                                              TargetMachine="17"

-                                              />

-                                              <Tool

-                                                              Name="VCALinkTool"

-                                              />

-                                              <Tool

-                                                              Name="VCManifestTool"

-                                              />

-                                              <Tool

-                                                              Name="VCXDCMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCBscMakeTool"

-                                              />

-                                              <Tool

-                                                              Name="VCFxCopTool"

-                                              />

-                                              <Tool

-                                                              Name="VCAppVerifierTool"

-                                              />

-                                              <Tool

-                                                              Name="VCWebDeploymentTool"

-                                              />

-                                              <Tool

-                                                              Name="VCPostBuildEventTool"

-                                              />

-                              </Configuration>

-              </Configurations>

-              <References>

-                              <ProjectReference

-                                              ReferencedProjectIdentifier="{66CB8ABC-8EA3-4FF6-B715-D878B37CCCB3}"

-                                              RelativePathToProject=".\mama\c_cpp\src\cpp\mamacpp.vcproj"

-                              />

-              </References>

-              <Files>

-                              <Filter

-                                              Name="Source Files"

-                                              Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"

-                                              UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"

-                                              >

-                                              <File

-                                                              RelativePath=".\mamainbox2cpp.cpp"

-                                                              >

-                                              </File>

-                              </Filter>

-                              <Filter

-                                              Name="Header Files"

-                                              Filter="h;hpp;hxx;hm;inl;inc;xsd"

-                                              UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"

-                                              >

-                              </Filter>

-                              <Filter

-                                              Name="Resource Files"

-                                              Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"

-                                              UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"

-                                              >

-                              </Filter>

-              </Files>

-              <Globals>

-              </Globals>

-</VisualStudioProject>

--

1.7.9.5

 




Please consider the environment before printing this e-mail.

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient or have received this e-mail in error, please advise the sender immediately by reply e-mail and delete this message and any attachments without retaining a copy.

Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.

Join {Openmama-dev@lists.openmama.org to automatically receive all group messages.