00001 /***************************************************************************** 00002 * object.h 00003 * Last Change: 2003-12-27 00004 * Copyright (c) 2003 Sebastian "randomZ" Beschke 00005 **************** 00006 * This file is part of the libsofu project, a parser library for an all-purpose 00007 * ASCII file format. More information can be found on the project web site 00008 * at http://sofu.sourceforge.net/ . 00009 * 00010 * libsofu is published under the terms of the MIT license, which basically means 00011 * "Do with it whatever you want". For more information, see the license.txt 00012 * file that should be enclosed with libsofu distributions. A copy of the license 00013 * is (at the time of this writing) also available at 00014 * http://www.opensource.org/licenses/mit-license.php . 00015 *****************************************************************************/ 00016 00021 #ifndef INC_SOFU_OBJECT_H 00022 #define INC_SOFU_OBJECT_H 00023 00024 #include "main.h" 00025 00026 namespace Sofu 00027 { 00032 class Object 00033 { 00034 public: 00035 Object(void); 00036 virtual ~Object(void); 00037 }; 00038 } 00039 00040 #endif // INC_OBJECT_H