00001 /*! 00002 \file 00003 \brief Class declaration and type definitions for class DescentStatus. 00004 */ 00005 /* 00006 This is descents_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 DESCENTS_FWD_H /* guard against multiple inclusions */ 00015 #define DESCENTS_FWD_H 00016 00017 #include <vector> 00018 00019 namespace atlas { 00020 00021 /******** type declarations *************************************************/ 00022 00023 namespace descents { 00024 00025 class DescentStatus; 00026 typedef std::vector<DescentStatus> DescentStatusList; 00027 00028 } 00029 00030 } 00031 00032 #endif
1.3.9.1