23 lines
1.0 KiB
C++
23 lines
1.0 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/20 09:27:04 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/20 13:16:21 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <unstd/unique_ptr.h>
|
|
#include <unstd/shared_ptr.h>
|
|
#include <unstd/weak_ptr.h>
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
(void)ac;
|
|
(void)av;
|
|
return 0;
|
|
}
|