#include <assert.h>
#include "TableHeaderCellView.h"
Go to the source code of this file.
◆ _Class
◆ _TableHeaderCellView()
| Class * _TableHeaderCellView |
( |
void |
| ) |
|
Definition at line 53 of file TableHeaderCellView.c.
53 {
54 static Class *clazz;
55 static Once once;
56
57 do_once(&once, {
58 clazz = _initialize(&(const ClassDef) {
59 .name = "TableHeaderCellView",
63 .interfaceSize = sizeof(TableHeaderCellViewInterface),
65 });
66 });
67
68 return clazz;
69}
Class * _TableCellView(void)
◆ initialize()
| static void initialize |
( |
Class * |
clazz | ) |
|
|
static |
- See also
- Class::initialize(Class *)
Definition at line 45 of file TableHeaderCellView.c.
45 {
46 ((TableHeaderCellViewInterface *) clazz->interface)->initWithFrame =
initWithFrame;
47}
◆ initWithFrame()
Definition at line 36 of file TableHeaderCellView.c.
36 {
38}
Each row in a TableView is comprised of TableCellViews.