IFD:Acoustic Interfaces/introduction to c++: Difference between revisions

From Medien Wiki
No edit summary
No edit summary
Line 34: Line 34:
The code about classes and pointers:
The code about classes and pointers:


#include <iostream>
    #include <iostream>
     using namespace std;
     using namespace std;
     class Point2D {
     class Point2D {
Line 59: Line 59:
             float _y;
             float _y;
     };
     };
 
   
 
 
     int main()
     int main()
     {
     {