doxygen option '\file' added.

This commit is contained in:
Roland Jax
2014-11-22 20:00:27 +01:00
parent 59d4907223
commit b593af967a
6 changed files with 50 additions and 38 deletions
+3 -1
View File
@@ -24,9 +24,11 @@
#include <string>
#include <vector>
/** \file configfile.h */
/** available file endings / types. */
enum FileType {
ft_csv // CSV
ft_csv /*!< CSV */
};
/**
+4 -2
View File
@@ -25,10 +25,12 @@
#include <termios.h>
#include <unistd.h>
/** \file port.h */
/** available device types. */
enum DeviceType {
dt_serial, // serial device
dt_network // network device
dt_serial, /*!< serial device */
dt_network /*!< network device */
};
/** max bytes write to bus. */