5d235b51f3
tmp commit tmp commit v2 Finished reimplementation of propertys. They now can be placed in a holder with different source of type information. Tmp commit
14 lines
285 B
C++
14 lines
285 B
C++
#pragma once
|
|
|
|
#include "utils/total_ordering.hpp"
|
|
|
|
class Void : public TotalOrdering<Void>
|
|
{
|
|
public:
|
|
static Void _void;
|
|
|
|
friend bool operator<(const Void &lhs, const Void &rhs) { return false; }
|
|
|
|
friend bool operator==(const Void &lhs, const Void &rhs) { return true; }
|
|
};
|