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