//
//####################################################################
//
// Routine that tests the DLLproject.dll
//
// This code is linked to the DLLproject.lib file
// (generated by a DLL project names SupportRoutines).
//
//####################################################################
//
#include <iostream>
using namespace std;

#include "SupportRoutines.h"   

int main()
{
    SupportRoutines R;
    double x;
    double y;

    x = 2.0;
    y = R.timesTwo(x);
    
    cout << " x = " << x  << " 2*x = " << y << endl;
}
