TkN 2.4
Toolkit for Nuclei
Loading...
Searching...
No Matches
tkdb_column.cpp
1/********************************************************************************
2 * Copyright (c) : Université de Lyon 1, CNRS/IN2P3, UMR5822, *
3 * IP2I, F-69622 Villeurbanne Cedex, France *
4 * Normandie Université, ENSICAEN, UNICAEN, CNRS/IN2P3, *
5 * LPC Caen, F-14000 Caen, France *
6 * Contibutor(s) : *
7 * Jérémie Dudouet jeremie.dudouet@cnrs.fr [2020] *
8 * Diego Gruyer diego.gruyer@cnrs.fr [2020] *
9 * *
10 * Licensed under the MIT License <http://opensource.org/licenses/MIT>. *
11 * SPDX-License-Identifier: MIT *
12 ********************************************************************************/
13
14#include "tkdb_column.h"
15
16namespace tkn {
24}
25
26using namespace tkn;
27
28tkdb_column::tkdb_column(const char *_name, const char *_type)
29{
30 set_name(_name);
31 set_type(_type);
32}
33
35
36#ifdef HAS_ROOT
38ClassImp(tkdb_column)
39#endif
40
41
Simple structure to store a table column.
Definition tkdb_column.h:26
void set_name(const char *_name)
Definition tkdb_column.h:40
void set_type(const char *_type)
Definition tkdb_column.h:41
virtual ~tkdb_column()
Definition tklog.cpp:16