mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Variant
- A variant now contains a source reference, which indicates where it came from. This is used to determine whether 'H' is a priority or just a word.
This commit is contained in:
parent
6bcb9e4bf3
commit
3bc44681a5
2 changed files with 26 additions and 0 deletions
|
@ -47,6 +47,7 @@ Variant::Variant ()
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -59,6 +60,7 @@ Variant::Variant (const Variant& other)
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
*this = other;
|
||||
}
|
||||
|
@ -72,6 +74,7 @@ Variant::Variant (const bool value)
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -84,6 +87,7 @@ Variant::Variant (const int value)
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -96,6 +100,7 @@ Variant::Variant (const double value)
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -108,6 +113,7 @@ Variant::Variant (const std::string& value)
|
|||
, _string (value)
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -120,6 +126,7 @@ Variant::Variant (const char* value)
|
|||
, _string (std::string (value))
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -132,6 +139,7 @@ Variant::Variant (const time_t value, const enum type new_type /*=type_date*/)
|
|||
, _string ("")
|
||||
, _date (0)
|
||||
, _duration (0)
|
||||
, _source ("")
|
||||
{
|
||||
switch (new_type)
|
||||
{
|
||||
|
@ -147,6 +155,18 @@ Variant::~Variant ()
|
|||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void Variant::source (const std::string& input)
|
||||
{
|
||||
_source = input;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string Variant::source () const
|
||||
{
|
||||
return _source;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Variant& Variant::operator= (const Variant& other)
|
||||
{
|
||||
|
@ -159,6 +179,7 @@ Variant& Variant::operator= (const Variant& other)
|
|||
_string = other._string;
|
||||
_date = other._date;
|
||||
_duration = other._duration;
|
||||
_source = other._source;
|
||||
}
|
||||
|
||||
return *this;
|
||||
|
|
|
@ -48,6 +48,9 @@ public:
|
|||
Variant (const time_t, const enum type new_type = type_date);
|
||||
~Variant ();
|
||||
|
||||
void source (const std::string&);
|
||||
std::string source () const;
|
||||
|
||||
Variant& operator= (const Variant&);
|
||||
|
||||
bool operator&& (const Variant&) const;
|
||||
|
@ -105,6 +108,8 @@ private:
|
|||
std::string _string;
|
||||
time_t _date;
|
||||
time_t _duration;
|
||||
|
||||
std::string _source;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue