00001 #ifndef FCS_DERIVEDSTATES_H 00002 #define FCS_DERIVEDSTATES_H 00003 00011 00012 #include "FCState.h" 00013 00015 class FCSDerivedStatesList 00016 { 00017 public: 00019 FCSDerivedStatesList(); 00020 00024 void AddState(FCSStateWithLocations* State); 00025 00027 int m_NumberOfStates; 00028 00030 int m_MaxNumberOfStates; 00031 00033 FCSStateWithLocations** m_States; 00034 }; 00035 00036 #endif