/sparrowhawk/foundation/ESFObject.h
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 17#ifndef ESF_OBJECT_H 18#define ESF_OBJECT_H 19 20#ifndef ESF_CONFIG_H 21#include <ESFConfig.h> 22#endif 23 24/** An object 25 * 26 * @ingroup collection 27 */ 28class ESFObject { 29public: 30 ESFObject() { 31 } 32 ; 33 34 virtual ~ESFObject() { 35 } 36 ; 37}; 38 39#endif /* ! ESF_OBJECT_H */