diff options
Diffstat (limited to 'cpp/include/Ice/FactoryTable.h')
-rw-r--r-- | cpp/include/Ice/FactoryTable.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cpp/include/Ice/FactoryTable.h b/cpp/include/Ice/FactoryTable.h new file mode 100644 index 00000000000..9e0e9ba400b --- /dev/null +++ b/cpp/include/Ice/FactoryTable.h @@ -0,0 +1,36 @@ +// ********************************************************************** +// +// Copyright (c) 2003 +// ZeroC, Inc. +// Billerica, MA, USA +// +// All Rights Reserved. +// +// Ice is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License version 2 as published by +// the Free Software Foundation. +// +// ********************************************************************** + +#ifndef ICE_FACTORYTABLE_H +#define ICE_FACTORYTABLE_H + +#include <Ice/FactoryTableDef.h> + +namespace Ice +{ + +class ICE_API FactoryTable +{ +public: + + FactoryTable(); + ~FactoryTable(); +}; + +static FactoryTable factoryTableInitializer; // Dummy variable to force initialization of factoryTable + +extern ICE_API FactoryTableDef* factoryTable; +} + +#endif |