TorchCraftAI
A bot for machine learning research on StarCraft: Brood War
fifopipes.h
1 /*
2  * Copyright (c) 2017-present, Facebook, Inc.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7 
8 #pragma once
9 
10 #include <string>
11 
12 namespace cherrypi {
13 namespace detail {
14 struct FifoPipes {
15  std::string pipe1;
16  std::string pipe2;
17 
18  FifoPipes();
19  ~FifoPipes();
20 
21  private:
22  std::string root_;
23 };
24 } // namespace detail
25 } // namespace cherrypi
FifoPipes()
Definition: fifopipes.cpp:24
std::string pipe2
Definition: fifopipes.h:16
Definition: fifopipes.h:14
std::string pipe1
Definition: fifopipes.h:15
Main namespace for bot-related code.
Definition: areainfo.cpp:17
~FifoPipes()
Definition: fifopipes.cpp:44