22 lines
480 B
C++
22 lines
480 B
C++
/* @file Number.hpp
|
|
*
|
|
* author: Roland Conybeare, Aug 2025
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Scalar.hpp"
|
|
|
|
namespace xo {
|
|
namespace obj {
|
|
class Number : public Scalar {
|
|
// 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 Number.hpp */
|