cppVisibility.h 881 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Filename: cppVisibility.h
  2. // Created by: drose (22Oct99)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. #ifndef CPPVISIBILITY_H
  19. #define CPPVISIBILITY_H
  20. #include <dtoolbase.h>
  21. enum CPPVisibility {
  22. V_published,
  23. V_public,
  24. V_protected,
  25. V_private,
  26. V_unknown
  27. };
  28. ostream &operator << (ostream &out, CPPVisibility vis);
  29. #endif