Add proper include guard.

This header gets included by enabling dynamic lookup, and by RegisterModule() of G__Meta.
We need the latter for the many-pcm case.


git-svn-id: http://root.cern.ch/svn/root/trunk@48703 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Axel Naumann 2013-02-26 09:46:50 +00:00
parent a343830c5b
commit 46bd172859

View File

@ -3,19 +3,15 @@
// version: $Id$
// author: Vassil Vassilev <vasil.georgiev.vasilev@cern.ch>
//------------------------------------------------------------------------------
#ifndef CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H
#define CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H
#ifndef __CLING__
#error "This file must not be included by compiled programs."
#endif
#ifdef CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H
#error "CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H Must only include once."
#endif
#define CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H
#include "cling/Interpreter/Interpreter.h"
#ifndef CLING_RUNTIME_UNIVERSE_H
#include "cling/Interpreter/RuntimeUniverse.h"
#endif
#include "cling/Interpreter/DynamicExprInfo.h"
#include "cling/Interpreter/DynamicLookupLifetimeHandler.h"
#include "cling/Interpreter/StoredValueRef.h"
@ -66,3 +62,5 @@ namespace runtime {
} // end nmespace internal
} // end namespace runtime
} // end namespace cling
#endif // CLING_DYNAMIC_LOOKUP_RUNTIME_UNIVERSE_H