summaryrefslogtreecommitdiff
path: root/idl/inc/command.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/command.hxx')
-rw-r--r--idl/inc/command.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/idl/inc/command.hxx b/idl/inc/command.hxx
index 7dc41e903f..0b20c96422 100644
--- a/idl/inc/command.hxx
+++ b/idl/inc/command.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.
@@ -31,13 +32,14 @@
#include <tools/list.hxx>
#include <tools/string.hxx>
+#include <vector>
#ifndef STRING_LIST
#define STRING_LIST
-DECLARE_LIST( StringList, String * )
+typedef ::std::vector< String* > StringList;
#endif
-DECLARE_LIST( ByteStringList, ByteString* )
+typedef ::std::vector< ByteString* > ByteStringList;
/******************** class SvCommand ************************************/
class SvCommand
@@ -76,3 +78,4 @@ void DeInit();
#endif // _COMMAND_HXX
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */