diff options
author | Michi Henning <michi@zeroc.com> | 2003-05-08 05:46:29 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-05-08 05:46:29 +0000 |
commit | 225855fb6b992a4207f9107d988036aa1ee0d217 (patch) | |
tree | efa68b5ed0afbc0753e7b8d98786674262caa872 /cpp/include/Ice/FactoryTable.h | |
parent | more install projects (diff) | |
download | ice-225855fb6b992a4207f9107d988036aa1ee0d217.tar.bz2 ice-225855fb6b992a4207f9107d988036aa1ee0d217.tar.xz ice-225855fb6b992a4207f9107d988036aa1ee0d217.zip |
Merged HEAD and slicing trees.
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 |