How to tweak Eclipse's C++ Indexer? -


i'm using eclipse ide c++ project, , love tell me given symbol defined , parameters function.

however, there's catch: use lazy c++, tool takes single source file , generates .h , .cpp files. .lzz files headers, tool supports mild syntactic benefits, combining nested namespaces qualified name. additionally, has special tags tell tool put (in header or in source file).

so typical sourcefile.lzz looks this:

$hdr #include <iosfwd> #include "projecta/baseclass.h" $end  $src #include <iostream> #include "projectb/otherclass.h" $end  // forward declarations namespace bigscope::projectb {   class otherclass; }  namespace bigscope::projecta {   class myclass : public projecta::baseclass   {     void somemethod(const projectb::otherclass& foo) { }   } } 

as see, it's still recognizable c++, few extras.

for reason, cdt's indexer not seem want index anything, , don't know what's wrong. in indexer view, shows me empty tree, tells me has 15000 symbols , more stuff, none of can seem access.

so here's question: how can make indexer output more information it's doing , why fails when so, , can tweak more gui-accessible options?

thanks,

carl

i'd imagine 1 of:

  • eclipse doesn't want display non-c++ resources in tree (i've had problems this)

  • you don't have "preferences > c/c++ > indexer > index files" enabled.

  • you want use "full c/c++ indexer" rather "fast c/c++ indexer"


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -