Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TSchemaType.h
Go to the documentation of this file.
1// @(#)root/core:$Id$
2
3#ifndef R__TSCHEMATYPE_H
4#define R__TSCHEMATYPE_H
5
6// NOTE: #included by libCore and libCling. All symbols must be inline.
7
8#include <string>
9#include <map>
10
11namespace ROOT {
12namespace Internal {
13 struct TSchemaType {
14 TSchemaType() = default;
15 TSchemaType(const char *type, const char *dim) : fType(type),fDimensions(dim) {}
16 TSchemaType(const std::string &type, const std::string &dim) : fType(type),fDimensions(dim) {}
17 std::string fType;
18 std::string fDimensions;
19 };
20 typedef std::map<std::string, std::string> MembersMap_t;
21}
22}
23#endif // R__TSCHEMATYPE_H
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
std::map< std::string, std::string > MembersMap_t
Definition TSchemaType.h:20
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
TSchemaType(const std::string &type, const std::string &dim)
Definition TSchemaType.h:16
TSchemaType(const char *type, const char *dim)
Definition TSchemaType.h:15