~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to results/plugins/org.eclipse.cdt.core.tests/resources/indexer/reftest.cpp

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2011-10-06 21:15:04 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111006211504-8dutmljjih0zikfv
Tags: 8.0.1-1
* New upstream release.
* Split the JNI packages into a separate architecture dependent
  package and made eclipse-cdt architecture independent.
* Install JNI libraries into multiarch aware location
* Bumped Standards-Version to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace A 
2
 
3
 
        class ForwardA;
4
 
        ForwardA * tmp;
5
 
        int something(void);
6
 
        namespace B 
7
 
        { 
8
 
                enum e1{dude1,dude2};
9
 
                int x;  
10
 
                class C 
11
 
                {       static int y = 5; 
12
 
                        static int bar(void);
13
 
                }; 
14
 
        } 
15
 
16
 
using namespace A::B;
17
 
using A::B::x;
18
 
using A::B::C;
19
 
using A::B::C::y;
20
 
using A::B::C::bar;
21
 
using A::something;
22
 
using A::B::e1;
 
 
b'\\ No newline at end of file'