xo-tokenizer2/xo-object/include/xo/object/Scalar.hpp

22 lines
482 B
C++

/* @file Scalar.hpp
*
* author: Roland Conybeare, Aug 2025
*/
#pragma once
#include "Numeric.hpp"
namespace xo {
namespace obj {
class Scalar : public Numeric {
// inherited from Object..
//virtual std::size_t _shallow_size() const override;
//virtual Object * _shallow_copy() override;
//virtual std::size_t _forward_children() override;
};
} /*namespace obj*/
} /*namespace xo*/
/* end Scalar.hpp */