ColTypeNumeric: Removed obsolete code
This commit is contained in:
@@ -43,21 +43,6 @@ ColumnTypeNumeric::ColumnTypeNumeric ()
|
||||
_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)
|
||||
{
|
||||
|
||||
@@ -27,18 +27,14 @@
|
||||
#ifndef INCLUDED_COLTYPENUMERIC
|
||||
#define INCLUDED_COLTYPENUMERIC
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <Column.h>
|
||||
#include <Color.h>
|
||||
#include <Task.h>
|
||||
|
||||
class ColumnTypeNumeric : public Column
|
||||
{
|
||||
public:
|
||||
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&);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user