00001 #ifndef GraphContainerH 00002 #define GraphContainerH 00003 /******************************************************************************* 00004 Copyright 2003 Petr Kulhanek 00005 00006 This file is part of Core plugin. 00007 00008 Core plugin is free software; you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation; either version 2 of the License, or 00011 (at your option) any later version. 00012 00013 Core plugin is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with Core plugin; if not, write to the Free Software 00020 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 *******************************************************************************/ 00022 00023 #include "CoreMainHeader.h" 00024 00025 //--------------------------------------------------------------------------- 00026 /* 00027 class C2DPoint{ 00028 public: 00029 double x,y; // point in 2D space 00030 void* Object; // associated object 00031 }; 00032 00033 //--------------------------------------------------------------------------- 00034 00035 class C2DGraphContainer : public CExtObject{ 00036 public: 00037 __fastcall C2DGraphContainer( 00038 00039 __fastcall Get 00040 00041 00042 private: 00043 int SizeOfArray; 00044 C2DPoint* DataArray; 00045 }; 00046 00047 //--------------------------------------------------------------------------- 00048 00049 class C3DPoint{ 00050 public: 00051 double x,y,z; // point in 3D space 00052 void* Object; // associated object 00053 }; 00054 00055 //--------------------------------------------------------------------------- 00056 00057 class C3DGraphContainer : public CExtObject{ 00058 public: 00059 00060 00061 00062 private: 00063 00064 00065 00066 }; 00067 */ 00068 //--------------------------------------------------------------------------- 00069 #endif