diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-07-08 11:50:26 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-07-08 11:50:26 +0200 |
commit | 64b729f3284ead6a71fbeb7f8e0dd22187b21786 (patch) | |
tree | 60efb272d174f31bb93cfe561ac1c7ceeb3b412e /src/charset.h | |
parent | 561b6adce76dd209ebc547fcd98f525501742d97 (diff) | |
download | ODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.tar.gz ODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.tar.bz2 ODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.zip |
Add doxygen configuration and target
Diffstat (limited to 'src/charset.h')
-rw-r--r-- | src/charset.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/charset.h b/src/charset.h index 82d81cf..8d1e1a2 100644 --- a/src/charset.h +++ b/src/charset.h @@ -13,13 +13,13 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ +/*! + \file charset.h + \brief Define the EBU charset according to ETSI TS 101 756v1.8.1 for DLS encoding - charset.h - Define the EBU charset according to ETSI TS 101 756v1.8.1 for DLS encoding - - Authors: - Matthias P. Braendli <matthias@mpb.li> - Lindsay Cornell + \author Matthias P. Braendli <matthias@mpb.li> + \author Lindsay Cornell */ #ifndef __CHARSET_H_ @@ -65,7 +65,7 @@ class CharsetConverter { public: CharsetConverter() { - /* Build the converstion table that contains the known code points, + /*! Build the converstion table that contains the known code points, * at the indices corresponding to the EBU Latin table */ using namespace std; @@ -77,7 +77,7 @@ class CharsetConverter } } - /* Convert a UTF-8 encoded text line into an EBU Latin encoded byte stream + /*! Convert a UTF-8 encoded text line into an EBU Latin encoded byte stream */ std::string convert(std::string line_utf8) { using namespace std; |