Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
terralib:exemplo1 [2008/04/02 12:57]
150.163.3.123
terralib:exemplo1 [2008/04/02 12:59] (current)
150.163.3.123
Line 84: Line 84:
  
   protected:   protected:
- int myProtectedInt_;​+    //! My protected int member 
 +    ​int myProtectedInt_;​
  
   private:   private:
- int myInt_; +    //! My private int member 
- double myDouble_;​ +    ​int myInt_; 
- std::​string myString_;​ +    //! My private double member 
- bool valid_; +    ​double myDouble_;​ 
- TeClass* myClassPointer_;​ +    //! My private string member 
 +    ​std::string myString_;​ 
 +    //! My private boolen member 
 +    ​bool valid_; 
 +   //! My private class pointer member 
 +    ​TeClass* myClassPointer_;​
 }; };
  

Navigation