summaryrefslogtreecommitdiff
path: root/graphs/cpp/my_nfts/nft.hxx
blob: 083f10f21f6d20fb350f69e8ef40e072a07ae96d (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "nft.hh"
inline NFT create_empty_nft()
{
    return nullptr;
}
inline NFT create_nft(const std::string& name)
{
    return std::make_unique<std::string>(name);
}