00001 /*! 00002 \file 00003 \brief Forward class declaration and type definitions for KLSupport. 00004 */ 00005 /* 00006 This is klsupport_fwd.h 00007 00008 Copyright (C) 2004,2005 Fokko du Cloux 00009 part of the Atlas of Reductive Lie Groups 00010 00011 See file main.cpp for full copyright notice 00012 */ 00013 00014 #ifndef KLSUPPORT_FWD_H /* guard against multiple inclusions */ 00015 #define KLSUPPORT_FWD_H 00016 00017 #include <vector> 00018 00019 #include "polynomials_fwd.h" 00020 #include "blocks_fwd.h" 00021 00022 namespace atlas { 00023 00024 /******** type declarations *************************************************/ 00025 00026 namespace klsupport { 00027 00028 class KLSupport; 00029 class KLSupport_new; 00030 00031 typedef std::vector<blocks::BlockElt> PrimitiveRow; 00032 00033 } 00034 00035 } 00036 00037 #endif
1.3.9.1