Add documentation!

git-svn-id: http://root.cern.ch/svn/root/trunk@49105 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Axel Naumann 2013-04-05 21:55:12 +00:00
parent 2e153295ff
commit a91112365b

View File

@ -73,6 +73,15 @@ namespace cling {
///
const clang::ClassTemplateDecl* findClassTemplate(llvm::StringRef Name) const;
///\brief Lookup a function based on its Decl(Context), name and parameters.
///
///\param[in] scopeDecl - the scope (namespace or tag) that is searched for
/// the function.
///\param[in] funcName - the name of the function to find.
///\param[in] funcProto - the function parameter list (without enclosing
/// parantheses). Example: "size_t,int".
///\returns The function found or null.
const clang::FunctionDecl* findFunctionProto(const clang::Decl* scopeDecl,
llvm::StringRef funcName,
llvm::StringRef funcProto) const;