subrepo: subdir: "xo-object" merged: "d830632a" upstream: origin: "git@github.com:Rconybea/xo-object.git" branch: "main" commit: "d830632a" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
21 lines
302 B
C++
21 lines
302 B
C++
/** @file cons.hpp
|
|
*
|
|
* Author: Roland Conybeare
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#Include "variant.hpp"
|
|
//#include <cstdint>
|
|
|
|
namespace xo {
|
|
namespace var {
|
|
struct cons {
|
|
variant car_;
|
|
variant cdr_;
|
|
};
|
|
} /*namespace var*/
|
|
} /*namespace xo*/
|
|
|
|
|
|
/** end cons.hpp **/
|