blob: 21475450eae64ab9250486f67010f0036d0f1dbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <memory>
#include <string>
// NFT declaration
using NFT = std::unique_ptr<std::string>;
// Create an empty NFT (convient in some scenarios).
NFT create_empty_nft();
// Create a NFT with the given name.
NFT create_nft(const std::string& name);
// Define the functions in the nft.hxx file.
#include "nft.hxx"
|