WPILibC++  unspecified
hostname.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #ifndef WPIUTIL_SUPPORT_HOSTNAME_H_
9 #define WPIUTIL_SUPPORT_HOSTNAME_H_
10 
11 #include <string>
12 
13 #include "llvm/StringRef.h"
14 
15 namespace llvm {
16 template <typename T>
17 class SmallVectorImpl;
18 } // namespace llvm
19 
20 namespace wpi {
21 std::string GetHostname();
23 } // namespace wpi
24 
25 #endif // WPIUTIL_SUPPORT_HOSTNAME_H_
Definition: Path.inc:31
Definition: SocketError.cpp:17
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:42