Skip to content

Commit

Permalink
Create Test class for doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE committed Oct 6, 2023
1 parent 8b56c80 commit df35c9e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"lllllllqw.jsdoc",
"tboox.xmake-vscode",
"svelte.svelte-vscode",
"christian-kohler.path-intellisense"
"christian-kohler.path-intellisense",
"fleexo.cpp-class-creator"
]
}
11 changes: 11 additions & 0 deletions backend/src/Test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include "Test.h"

Test::Test()
{

}

Test::~Test()
{

}
28 changes: 28 additions & 0 deletions backend/src/Test.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#ifndef TEST_H
#define TEST_H

#pragma once

/**
* @brief Test Class to run DOxygen
*
*/
class Test
{
public:
/**
* @brief Construct a new Test object
*
*/
Test();
/**
* @brief Destroy the Test object
*
*/
~Test();

private:

};

#endif
2 changes: 1 addition & 1 deletion backend/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#include <rplidar.h>

using namespace drogon;

int main()
{

app().setLogPath("./")
.setLogLevel(trantor::Logger::kWarn)
.addListener("0.0.0.0", 9999)
Expand Down

0 comments on commit df35c9e

Please sign in to comment.