/sparrowhawk/foundation/ESFObject.h

http://github.com/jtblatt/duderino · C Header · 39 lines · 15 code · 5 blank · 19 comment · 0 complexity · efe4850d5b6aca7e3f1fe5b7ff63d05b MD5 · raw file

  1. /** @file ESFObject.h
  2. * @brief An object
  3. *
  4. * Copyright (c) 2009 Yahoo! Inc.
  5. * The copyrights embodied in the content of this file are licensed by Yahoo! Inc.
  6. * under the BSD (revised) open source license.
  7. *
  8. * Derived from code that is Copyright (c) 2009 Joshua Blatt and offered under both
  9. * BSD and Apache 2.0 licenses (http://sourceforge.net/projects/sparrowhawk/).
  10. *
  11. * $Author: blattj $
  12. * $Date: 2009/05/25 21:51:08 $
  13. * $Name: $
  14. * $Revision: 1.3 $
  15. */
  16. #ifndef ESF_OBJECT_H
  17. #define ESF_OBJECT_H
  18. #ifndef ESF_CONFIG_H
  19. #include <ESFConfig.h>
  20. #endif
  21. /** An object
  22. *
  23. * @ingroup collection
  24. */
  25. class ESFObject {
  26. public:
  27. ESFObject() {
  28. }
  29. ;
  30. virtual ~ESFObject() {
  31. }
  32. ;
  33. };
  34. #endif /* ! ESF_OBJECT_H */