21 lines
340 B
C++
21 lines
340 B
C++
|
|
/*
|
||
|
|
* File: LGridTextRenderer.cpp
|
||
|
|
* Author: SET - nmset@netcourrier.com
|
||
|
|
* License : LGPL version 2.1
|
||
|
|
* Copyright SET, M. D. - © 2014
|
||
|
|
*
|
||
|
|
* Created on 9 juin 2014, 19:00
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "LGridTextRenderer.h"
|
||
|
|
|
||
|
|
LGridTextRenderer::LGridTextRenderer()
|
||
|
|
: wxGridCellAutoWrapStringRenderer()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
LGridTextRenderer::~LGridTextRenderer()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|