fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <map>
  4. #include <memory>
  5.  
  6. class L
  7. {
  8. public:
  9. L(std::wstring);
  10. // ~L();
  11. private:
  12. std::wstring ipath;
  13. std::unique_ptr<std::string> tokenizer;
  14. };
  15.  
  16. L::L(std::wstring language)
  17. {
  18. }
  19.  
  20. // L::~L()
  21. // {
  22. // }
  23.  
  24. int main ()
  25. {
  26. std::map<std::string, L> l;
  27. l.insert(std::make_pair("a", L(L"b")));
  28. std::cout<<"The program is done"<<std::endl;
  29. return 0;
  30. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
The program is done