Skip to content
Snippets Groups Projects
Commit 60b1a225 authored by Axel Naumann's avatar Axel Naumann
Browse files

Cling should never see this; add comment about libCore/libCling use;...

Cling should never see this; add comment about libCore/libCling use; constness; default ctor = default.
parent 3add85d4
No related branches found
No related tags found
No related merge requests found
......@@ -3,22 +3,19 @@
#ifndef R__TSCHEMATYPE_H
#define R__TSCHEMATYPE_H
#if !defined(__CINT__)
// Avoid clutering the dictionary (in particular with the STL declaration)
// NOTE: #included by libCore and libCling. All symbols must be inline.
#include <string>
namespace ROOT {
namespace Internal {
struct TSchemaType {
TSchemaType() {}
TSchemaType() = default;
TSchemaType(const char *type, const char *dim) : fType(type),fDimensions(dim) {}
TSchemaType(std::string &type, std::string &dim) : fType(type),fDimensions(dim) {}
TSchemaType(const std::string &type, const std::string &dim) : fType(type),fDimensions(dim) {}
std::string fType;
std::string fDimensions;
};
}
}
#endif // __CINT__
#endif // R__TSCHEMATYPE_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment