ColTypeNumeric: Removed obsolete code
This commit is contained in:
@@ -43,21 +43,6 @@ ColumnTypeNumeric::ColumnTypeNumeric ()
|
|||||||
_type = "numeric";
|
_type = "numeric";
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Set the minimum and maximum widths for the value.
|
|
||||||
void ColumnTypeNumeric::measure (Task& task, unsigned int& minimum, unsigned int& maximum)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
|
||||||
void ColumnTypeNumeric::render (
|
|
||||||
std::vector <std::string>& lines,
|
|
||||||
Task& task,
|
|
||||||
int width,
|
|
||||||
Color& color)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
void ColumnTypeNumeric::modify (Task& task, const std::string& value)
|
void ColumnTypeNumeric::modify (Task& task, const std::string& value)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -27,18 +27,14 @@
|
|||||||
#ifndef INCLUDED_COLTYPENUMERIC
|
#ifndef INCLUDED_COLTYPENUMERIC
|
||||||
#define INCLUDED_COLTYPENUMERIC
|
#define INCLUDED_COLTYPENUMERIC
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <Column.h>
|
#include <Column.h>
|
||||||
#include <Color.h>
|
|
||||||
#include <Task.h>
|
#include <Task.h>
|
||||||
|
|
||||||
class ColumnTypeNumeric : public Column
|
class ColumnTypeNumeric : public Column
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ColumnTypeNumeric ();
|
ColumnTypeNumeric ();
|
||||||
virtual void measure (Task&, unsigned int&, unsigned int&);
|
|
||||||
virtual void render (std::vector <std::string>&, Task&, int, Color&);
|
|
||||||
virtual void modify (Task&, const std::string&);
|
virtual void modify (Task&, const std::string&);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user