Uses Reference if compiler has no port

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@48 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
tslettebo 2002-09-16 01:58:52 +00:00
parent 0b9d261d9b
commit ad7e89ad22
31 changed files with 509 additions and 470 deletions

View file

@ -1,25 +1,24 @@
//////////////////////////////////////
//Generated header: AbstractFactory.h
//Forwards to the appropriate code
///////////////////////////////////////
// Generated header: AbstractFactory.h
// Forwards to the appropriate code
// that works on the detected compiler
//Generated on Sun Sep 08 18:42:42 2002
// Generated on Sun Sep 15 15:31:17 2002
///////////////////////////////////////
#ifdef LOKI_USE_REFERENCE
# include "./Reference/AbstractFactory.h"
# include "Reference/AbstractFactory.h"
#else
# if (_MSC_VER >= 1300)
# include "./MSVC/1300/AbstractFactory.h"
# elif (_MSC_VER >= 1200)
# include "./MSVC/1200/AbstractFactory.h"
# elif (__BORLANDC__)
# include "./Borland/AbstractFactory.h"
# if (__INTEL_COMPILER)
# include "Reference/AbstractFactory.h"
# elif (__MWERKS__)
# include "./Reference/AbstractFactory.h"
# elif ( (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)) )
# include "./Reference/AbstractFactory.h"
# include "Reference/AbstractFactory.h"
# elif (__BORLANDC__ >= 0x560)
# include "Borland/AbstractFactory.h"
# elif (_MSC_VER >= 1300)
# include "MSVC/1300/AbstractFactory.h"
# elif (_MSC_VER >= 1200)
# include "MSVC/1200/AbstractFactory.h"
# else
//Define LOKI_USE_REFERENCE and get back to us on the results
# error Compiler not tested with Loki, #define LOKI_USE_REFERENCE
# include "Reference/AbstractFactory.h"
# endif
#endif