eflxx/elementaryxx/include/elementaryxx/GenListColumnConstructor.h

30 lines
482 B
C
Raw Permalink Normal View History

#ifndef ELMXX_GEN_LIST_COLUMN_CONSTRUCTOR
#define ELMXX_GEN_LIST_COLUMN_CONSTRUCTOR
/* STD */
#include <string>
namespace Elmxx {
/* forward declarations */
class GenList;
2011-11-05 12:45:19 -07:00
class GenDataModel;
2011-11-05 13:28:26 -07:00
class GenListItem;
class GenListColumnConstructor
{
public:
friend class GenList;
2011-11-05 12:45:19 -07:00
friend class GenDataModel;
GenListColumnConstructor ();
private:
2011-11-05 12:45:19 -07:00
GenDataModel *mDataModel;
2011-11-05 13:28:26 -07:00
GenListItem *mGenItem;
};
} // end namespace Elmxx
#endif // ELMXX_GEN_LIST_COLUMN_CONSTRUCTOR