00001 /**************************************************************************** 00002 * MeshLab o o * 00003 * An extendible mesh processor o o * 00004 * _ O _ * 00005 * Copyright(C) 2005, 2009 \/)\/ * 00006 * Visual Computing Lab /\/| * 00007 * ISTI - Italian National Research Council | * 00008 * \ * 00009 * All rights reserved. * 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 * This program is distributed in the hope that it will be useful, * 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00019 * GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * 00020 * for more details. * 00021 * * 00022 ****************************************************************************/ 00023 00024 #ifndef __VCGLIB_ADDITIONAL_INFO 00025 #define __VCGLIB_ADDITIONAL_INFO 00026 00027 class AdditionalInfo 00028 { 00029 protected: 00030 AdditionalInfo() 00031 { 00032 } 00033 public: 00034 unsigned int numvert; 00035 unsigned int numface; 00036 int mask; 00037 00038 virtual ~AdditionalInfo() 00039 { 00040 } 00041 }; 00042 00043 #endif