root/test/manual/etags/cp-src/x.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. foo
  2. bar
  3. main

     1 class XX
     2 {
     3 public:
     4      int foo();
     5      void bar();
     6 };
     7 
     8 int
     9 XX::foo()
    10 {
    11      return 1;
    12 }
    13 
    14 void
    15 XX::bar()
    16 {
    17      foo();
    18 }
    19 
    20 int
    21 main(int argc, char *argv[])
    22 {
    23      XX xx;
    24      xx.bar();
    25      return 0;
    26 }

/* [<][>][^][v][top][bottom][index][help] */