Advertisement
Guest User

Untitled

a guest
May 27th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. namespace fooo {
  2. class Fooo {
  3. public:
  4. int a;
  5. };
  6. }
  7.  
  8. namespace fooo {
  9. class Test {
  10. public:
  11. Test(const Fooo::Fooo *i) {
  12. i->a = 1;
  13. }
  14. };
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement