fork(1) download
  1. #include <iostream>
  2. #include <map>
  3. #include <vector>
  4. using namespace std;
  5.  
  6. int main() {
  7. std::map< std::string, std::vector < std::string > > m_normal_declaration;
  8. std::vector < std::string > _declaration;
  9. _declaration.clear();
  10. _declaration.push_back("px");
  11. _declaration.push_back("tak");
  12. m_normal_declaration.insert(std::pair<std::string, std::vector < std::string > >("d",_declaration));
  13. return 0;
  14. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
Standard output is empty