summaryrefslogtreecommitdiff
path: root/sot/inc/sot/factory.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/inc/sot/factory.hxx')
-rw-r--r--sot/inc/sot/factory.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sot/inc/sot/factory.hxx b/sot/inc/sot/factory.hxx
index 064c4b6388a1..d6eba9afe60a 100644
--- a/sot/inc/sot/factory.hxx
+++ b/sot/inc/sot/factory.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -28,20 +29,17 @@
#ifndef _SOT_FACTORY_HXX
#define _SOT_FACTORY_HXX
-#ifndef _TOOLS_GLOBNAME_HXX
#include <tools/globname.hxx>
-#endif
-#ifndef _TOOLS_RTTI_HXX
#include <tools/rtti.hxx>
-#endif
#include "sot/sotdllapi.h"
+#include <vector>
/*************************************************************************
*************************************************************************/
class SotObject;
class SotFactory;
-DECLARE_LIST( SotFactoryList, SotFactory * )
+typedef ::std::vector< SotFactory* > SotFactoryList;
typedef void * (*CreateInstanceType)( SotObject ** );
//==================class SotFactory=======================================
@@ -88,3 +86,5 @@ private:
};
#endif // _FACTORY_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */