ColTypeString: Removed obsolete code
This commit is contained in:
@@ -43,24 +43,6 @@ ColumnTypeString::ColumnTypeString ()
|
||||
_type = "string";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Set the minimum and maximum widths for the value.
|
||||
void ColumnTypeString::measure (
|
||||
Task& task,
|
||||
unsigned int& minimum,
|
||||
unsigned int& maximum)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeString::render (
|
||||
std::vector <std::string>& lines,
|
||||
Task& task,
|
||||
int width,
|
||||
Color& color)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void ColumnTypeString::modify (Task& task, const std::string& value)
|
||||
{
|
||||
|
||||
@@ -27,18 +27,14 @@
|
||||
#ifndef INCLUDED_COLTYPESTRING
|
||||
#define INCLUDED_COLTYPESTRING
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <Column.h>
|
||||
#include <Color.h>
|
||||
#include <Task.h>
|
||||
|
||||
class ColumnTypeString : public Column
|
||||
{
|
||||
public:
|
||||
ColumnTypeString ();
|
||||
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