Move dependencies to the top level.

This commit is contained in:
jakcron
2022-04-16 18:27:14 +08:00
parent b67980d3d2
commit 5d62e839e7
844 changed files with 74 additions and 114431 deletions
@@ -1,29 +0,0 @@
/**
* @file ResourceStatus.h
* @brief Declaration of tc::ResourceStatus
* @author Jack (jakcron)
* @version 0.1
* @date 2019/01/16
**/
#pragma once
#include <bitset>
namespace tc {
/**
* @enum ResourceStatusFlag
* @brief Flags for ResourceStatus
**/
enum ResourceStatusFlag
{
RESFLAG_READY, /**< Resource is ready for use */
RESFLAG_ERROR, /**< Resource encountered an error */
RESFLAG_NOINIT, /**< Resource is not initialized */
};
/**
* @brief Bitset indicating resource state information (see @ref ResourceStatusFlag)
**/
using ResourceStatus = std::bitset<32>;
} // namespace tc