Adds doxygen comments to SBF namespace.

Adds doxygen header to header files.
This commit is contained in:
2023-04-16 04:08:33 -07:00
parent 7c9c42b17c
commit 5501de76e2
16 changed files with 220 additions and 1 deletions

View File

@@ -1,8 +1,21 @@
#ifndef SBF_H__
#define SBF_H__
/***************************************************************************************
* @file sbf.h
*
* @brief Holds code copied from the BASIC version that hasn't been relocated yet.
* @copyright
* Copyright 2023 Tom Hicks
* Licensed under the MIT license see the LICENSE file for details.
***************************************************************************************/
#include "Colors.h"
#include "Menus.h"
#include "Character.h"
#include <string>
/** \addtogroup Unsorted
* @{
*/
namespace SBF {
using std::string;
@@ -809,3 +822,5 @@ End Sub
*/
} // End namespace SBF
/** #}*/
#endif // End !defined SBF_H__