//
//####################################################################
//
// SupportRoutines.h: SupportRoutines class declaration 
//
//####################################################################
//
#ifndef __SupportRoutines__
#define __SupportRoutines__


#ifdef  __MAKEDLL__                        // If __MAKEDLL__ is specified in 
#define __IMPEXP__  __declspec(dllexport)  // (C/C++)/General/Preprocessor Definitions
#endif                                     // then __IMPEXP__ = __declspec(dllexport)

#ifndef  __MAKEDLL__                       // If __MAKEDLL__ is not specified  
#define __IMPEXP__  __declspec(dllimport)  // then __IMPEXP__ = __declspec(dllimport)
#endif                                     

#ifndef _MSC_VER                           // For non-windows machines use a
#define __IMPEXP__                         // null definition, as __declspec is 
#endif                                     // Microsoft specific

class __IMPEXP__ SupportRoutines  
{
public:
	double timesTwo(double x);
	SupportRoutines();
	virtual ~SupportRoutines();
};

#endif 