TkN 2.4
Toolkit for Nuclei
Loading...
Searching...
No Matches
tkdataset_builder.h
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#ifndef tkdataset_builder_H
15#define tkdataset_builder_H
16
17#include "tkn_config.h"
18#include "tkdatabase.h"
19
20#ifdef HAS_ROOT
21#include "TClass.h"
22#endif
23
24
25namespace tkn {
26
28
29private:
30 tkdatabase *fDataBase;
31
32public:
33 tkdataset_builder(tkdatabase *_database, const char* _table_name="DATASET");
35
36#ifdef HAS_ROOT
38 ClassDef(tkdataset_builder,0);
39#endif
40};
41
42}
43#endif
44
45
Interface to the sqlite database.
Definition tkdatabase.h:34
virtual ~tkdataset_builder()
tkdataset_builder(tkdatabase *_database, const char *_table_name="DATASET")
Definition tklog.cpp:16