ISCE_INSAR/components/isceobj/Util/include/Inventory.h

14 lines
293 B
C++

#if !defined(_MROIPAC_INVENTORY_H_)
#define _MROIPAC_INVENTORY_H_
#include <map>
#include <string>
typedef std::string InventoryKey;
typedef std::string InventoryVal;
typedef std::map<InventoryKey,InventoryVal> Inventory;
typedef std::pair<InventoryKey,InventoryVal> InventoryItem;
#endif