mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-02-09 03:49:21 -06:00
17 lines
302 B
C++
17 lines
302 B
C++
#pragma once
|
|
#ifndef ORM_CONSTANTS_HPP
|
|
#define ORM_CONSTANTS_HPP
|
|
|
|
#include "orm/macros/systemheader.hpp"
|
|
TINY_SYSTEM_HEADER
|
|
|
|
#include "orm/config.hpp"
|
|
|
|
#ifdef TINYORM_EXTERN_CONSTANTS
|
|
# include "orm/constants_extern.hpp"
|
|
#else
|
|
# include "orm/constants_inline.hpp"
|
|
#endif
|
|
|
|
#endif // ORM_CONSTANTS_HPP
|