forked from micro-manager/micro-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://valelab.ucsf.edu/svn/micromanager2/trunk@6758 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
- Loading branch information
karlh
committed
Mar 23, 2011
1 parent
6348aa5
commit 1644199
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// FILE: Host.cpp | ||
// PROJECT: Micro-Manager | ||
// SUBSYSTEM: MMCore | ||
//----------------------------------------------------------------------------- | ||
// DESCRIPTION: Multi-platform implementation of some simple network facilities | ||
// | ||
// COPYRIGHT: University of California, San Francisco, 2011, | ||
// | ||
// LICENSE: This file is distributed under the "Lesser GPL" (LGPL) license. | ||
// License text is included with the source distribution. | ||
// | ||
// This file is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty | ||
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
// | ||
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES. | ||
// | ||
// AUTHOR: Karl Hoover [email protected] 2011 | ||
|
||
|
||
#include "Host.h" | ||
|
||
#ifdef _WINDOWS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// FILE: Host.cpp | ||
// PROJECT: Micro-Manager | ||
// SUBSYSTEM: MMCore | ||
//----------------------------------------------------------------------------- | ||
// DESCRIPTION: Multi-platform declaration of some simple network facilities | ||
// | ||
// COPYRIGHT: University of California, San Francisco, 2011, | ||
// | ||
// LICENSE: This file is distributed under the "Lesser GPL" (LGPL) license. | ||
// License text is included with the source distribution. | ||
// | ||
// This file is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty | ||
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
// | ||
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES. | ||
// | ||
// AUTHOR: Karl Hoover [email protected] 2011 | ||
#ifndef HOST_H | ||
#define HOST_H | ||
#include <string> | ||
|