Commit 88a8b24d authored by Thomas Braun's avatar Thomas Braun
Browse files

doxygen_defines.h: Add missing header include and std namespace

parent a1baa0b2
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -7,6 +7,8 @@
#ifndef TANGO_INTERNAL_DOXYGEN_DEFINES_H
#define TANGO_INTERNAL_DOXYGEN_DEFINES_H

#include <vector>

// NOTE: This file gets rendered by doxygen as a series of html files in the top
// level directory.  The scripts to build the multi-version site in ci/docs-site
// assume that all the html files will be in the top level, therefore, if you
@@ -22,32 +24,32 @@
/**@typedef DbData
 * A vector of DbDatum class
 */
typedef vector<DbDatum> DbData;
typedef std::vector<DbDatum> DbData;
/**@typedef DbDevInfos
 * A vector of DbDevInfo structure
 */
typedef vector<DbDevInfo> DbDevInfos;
typedef std::vector<DbDevInfo> DbDevInfos;
/**@typedef DbDevExportInfos
 * A vector of DbDevExport structure
 */
typedef vector<DbDevExportInfo> DbDevExportInfos;
typedef std::vector<DbDevExportInfo> DbDevExportInfos;
/**@typedef DbDevImportInfos
 * A vector of DbDevImport structure
 */
typedef vector<DbDevImportInfo> DbDevImportInfos;
typedef std::vector<DbDevImportInfo> DbDevImportInfos;

/**@typedef CommandInfoList
 * A vector of CommandInfo structure
 */
typedef vector<CommandInfo> CommandInfoList;
typedef std::vector<CommandInfo> CommandInfoList;
/**@typedef AttributeInfoList
 * A vector of AttributeInfo structure
 */
typedef vector<AttributeInfo> AttributeInfoList;
typedef std::vector<AttributeInfo> AttributeInfoList;
/**@typedef AttributeInfoListEx
 * A vector of AttributeInfoEx structure
 */
typedef vector<AttributeInfoEx> AttributeInfoListEx;
typedef std::vector<AttributeInfoEx> AttributeInfoListEx;

/*******************************************************
 *                                                     *