diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
commit | ead246455adf1a215ec2715dad6533073a6beb4e (patch) | |
tree | f3f97a47d77053bf96fe74cdbd6fae74380e8a92 /tools/lldb-mi/MIUtilDateTimeStd.h | |
parent | fdb00c4408990a0a63ef7f496d809ce59f263bc5 (diff) |
Notes
Diffstat (limited to 'tools/lldb-mi/MIUtilDateTimeStd.h')
-rw-r--r-- | tools/lldb-mi/MIUtilDateTimeStd.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/tools/lldb-mi/MIUtilDateTimeStd.h b/tools/lldb-mi/MIUtilDateTimeStd.h deleted file mode 100644 index 1a8e30c5654f9..0000000000000 --- a/tools/lldb-mi/MIUtilDateTimeStd.h +++ /dev/null @@ -1,40 +0,0 @@ -//===-- MIUtilDateTimeStd.h -------------------------------------*- C++ -*-===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -#pragma once - -// Third party headers -#include <ctime> - -// In-house headers: -#include "MIUtilString.h" - -//++ -//============================================================================ -// Details: MI common code utility class. Used to retrieve system local date -// time. -//-- -class CMIUtilDateTimeStd { - // Methods: -public: - /* ctor */ CMIUtilDateTimeStd(); - - CMIUtilString GetDate(); - CMIUtilString GetTime(); - CMIUtilString GetDateTimeLogFilename(); - - // Overrideable: -public: - // From CMICmnBase - /* dtor */ virtual ~CMIUtilDateTimeStd(); - - // Attributes: -private: - std::time_t m_rawTime; - char m_pScratch[16]; -}; |