Program Listing for File cell2D_state.hpp

Return to documentation for file (cosm/fsm/cell2D_state.hpp)

#pragma once

/*******************************************************************************
 * Includes
 ******************************************************************************/
#include "rcppsw/common/common.hpp"

/*******************************************************************************
 * Namespaces/Decls
 ******************************************************************************/
namespace cosm::fsm {

/*******************************************************************************
 * Class Definitions
 ******************************************************************************/
class cell2D_state {
 public:
  enum {
    ekST_UNKNOWN,

    ekST_EMPTY,

    ekST_HAS_BLOCK,

    ekST_HAS_CACHE,

    ekST_BLOCK_EXTENT,

    ekST_CACHE_EXTENT,

    ekST_NEST_EXTENT,

    ekST_MAX_STATES
  };
};

} /* namespace fsm::cosm */