You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
512 B

#pragma once
#include "to_string.hpp"
#include "from_string.hpp"
#include "tofrom_string.hpp"
template<typename T>
class TFSRef : public ToFromString
{
public:
int
from_string(const std::string_view s_) final
{
return str::from(s_,&_data);
}
std::string
to_string(void) const final
{
return str::to(_data);
}
public:
TFSRef(T &data_)
: _data(data_)
{
}
TFSRef(T &data_,
const T val_)
: _data(data_)
{
_data = val_;
}
private:
T &_data;
};