Skip to content

Commit

Permalink
Fixed missing std:: and added keywords for pressure controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars-Kool committed Apr 29, 2024
1 parent 74250cb commit daa5d2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MMCore/MMCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3231,7 +3231,7 @@ std::string CMMCore::getAutoFocusDevice()
/**
* Returns the label of the currently selected pump device.
*/
string CMMCore::getPumpDevice()
std::string CMMCore::getPumpDevice()
{
std::shared_ptr<PumpInstance> camera = currentPumpDevice_.lock();
if (camera)
Expand Down
2 changes: 2 additions & 0 deletions MMDevice/MMDeviceConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ namespace MM {
const char* const g_Keyword_Min_Volume = "Min_Volume_uL";
const char* const g_Keyword_Max_Volume = "Max_Volume_uL";
const char* const g_Keyword_Flowrate = "Flowrate_uL_per_sec";
const char* const g_Keyword_Pressure_Imposed = "Pressure Imposed";
const char* const g_Keyword_Pressure_Measured = "Pressure Measured";

// image annotations
const char* const g_Keyword_Meatdata_Exposure = "Exposure-ms";
Expand Down

0 comments on commit daa5d2b

Please sign in to comment.