File: getDefaultLogName.cpp

package info (click to toggle)
megacmd 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 32,592 kB
  • sloc: cpp: 326,437; ansic: 34,524; python: 4,630; java: 3,965; sh: 2,869; objc: 2,459; makefile: 197; xml: 113
file content (7 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#include <string>

const std::string& getDefaultLogName()
{
    static const std::string k = "sdk_unit_tests.log";
    return k;
}