Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Declaration and definition spread accross files

Dear CDT Devs,
                     
               I am currently looking for support to do the following :


foo.h

class XYZ
{
     void f();
}



foo.cc

XYZ::f()
{
    //Definition
}


Are there ways to connect the declaration and definition. Meaning, is it possible to find the location of the file that contains the declaration given the definition and vice versa, for eg, when I have a usage, is it possible to find where the definition would be

   
Regards
       Krishna

Back to the top