summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-04-19 23:48:00 -0700
committerJosh Blum <josh@joshknows.com>2010-04-19 23:48:00 -0700
commit6b015b1c517733e85cb0c08a379e8d20377bf2fa (patch)
tree4c94d069b809bf7ad1f8aaf95542b7cbbdc6e4dc /host/include
parent97b288f7d3ee0fc0fd596f6ba454cf07304474e0 (diff)
downloaduhd-6b015b1c517733e85cb0c08a379e8d20377bf2fa.tar.gz
uhd-6b015b1c517733e85cb0c08a379e8d20377bf2fa.tar.bz2
uhd-6b015b1c517733e85cb0c08a379e8d20377bf2fa.zip
added comments to cmakelists, makedir in file generation script so python doesnt have to
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/metadata.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/host/include/uhd/types/metadata.hpp b/host/include/uhd/types/metadata.hpp
index d93b38b50..55add71cc 100644
--- a/host/include/uhd/types/metadata.hpp
+++ b/host/include/uhd/types/metadata.hpp
@@ -70,7 +70,10 @@ namespace uhd{
* Timed-out on receive?
*/
- //default constructor
+ /*!
+ * The default constructor:
+ * Sets the fields to default values (flags set to false).
+ */
rx_metadata_t(void);
};
@@ -103,7 +106,10 @@ namespace uhd{
bool start_of_burst;
bool end_of_burst;
- //default constructor
+ /*!
+ * The default constructor:
+ * Sets the fields to default values (flags set to false).
+ */
tx_metadata_t(void);
};