//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== #ifndef __bbstdMapToLst_h_INCLUDED__ #define __bbstdMapToLst_h_INCLUDED__ #include "bbstd_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include #include typedef std::map mapString; namespace bbstd { class bbstd_EXPORT MapToLst : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(MapToLst,bbtk::AtomicBlackBox); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== BBTK_DECLARE_INPUT(InMap,mapString); BBTK_DECLARE_OUTPUT(LstTitles,std::vector); BBTK_DECLARE_OUTPUT(LstValues,std::vector); BBTK_PROCESS(Process); void Process(); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(MapToLst,bbtk::AtomicBlackBox); BBTK_NAME("MapToLst"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(MapToLst,InMap,"Input map",mapString,""); BBTK_OUTPUT(MapToLst,LstTitles,"List of map.first",std::vector,""); BBTK_OUTPUT(MapToLst,LstValues,"List of map.second",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(MapToLst); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== } // EO namespace bbstd #endif // __bbstdMapToLst_h_INCLUDED__