fork download
  1. #include <iostream>
  2. #include <map>
  3.  
  4. using namespace std;
  5.  
  6. class Foo {
  7.  
  8. public:
  9.  
  10. Foo()
  11. {
  12.  
  13.  
  14. }
  15.  
  16. static std::map<std::pair<int, int>, int> m_mSessionId2CCRNum2DefaultBearerId()
  17. {
  18. std::map<std::pair<int, int>, int> x;
  19.  
  20. return x;
  21. }
  22.  
  23. protected:
  24.  
  25. };
  26.  
  27.  
  28. int main() {
  29. // your code goes here
  30.  
  31. auto map = Foo::m_mSessionId2CCRNum2DefaultBearerId();
  32.  
  33. return 0;
  34. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty