Advertisement
Felanpro

Classes in namespaces

Apr 27th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. namespace A
  6. {
  7.  
  8.     class C_1
  9.     {
  10.     public:
  11.         int int1 = 45;
  12.     };
  13.  
  14. }
  15.  
  16. int main()
  17. {
  18.     A::C_1 object1;
  19.  
  20.     cout << object1.int1 << endl;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement