Files
clang-p2996/lldb/tools/lldb-mi/MIUtilSystemLinux.h
Hafiz Abid Qadeer a40780e36c Remove redundant comments from lldb-mi source files.
Most of lldb-mi files have comments about environement, copyright etc which were neither needed nor uptodate.
This commit removes those comments.

llvm-svn: 232396
2015-03-16 18:18:18 +00:00

46 lines
1.4 KiB
C++

//===-- CMIUtilSystemLinux.h ------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#pragma once
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__linux__)
// In-house headers:
#include "MIUtilString.h"
//++ ============================================================================
// Details: MI common code utility class. Used to set or retrieve information
// about the current system or user.
// *** If you change, remove or add functionality it must be replicated
// *** for the all platforms supported; Windows, OSX, LINUX
// Gotchas: None.
// Authors: Illya Rudkin 29/01/2014.
// Changes: None.
//--
class CMIUtilSystemLinux
{
// Methods:
public:
/* ctor */ CMIUtilSystemLinux(void);
bool GetOSErrorMsg(const MIint vError, CMIUtilString &vrwErrorMsg) const;
CMIUtilString GetOSLastError(void) const;
bool GetExecutablesPath(CMIUtilString &vrwFileNamePath) const;
bool GetLogFilesPath(CMIUtilString &vrwFileNamePath) const;
// Overrideable:
public:
// From CMICmnBase
/* dtor */ virtual ~CMIUtilSystemLinux(void);
};
typedef CMIUtilSystemLinux CMIUtilSystem;
#endif // #if defined( __linux__ )