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

14 lines
293 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
#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