File failed to load: https://isis.astrogeology.usgs.gov/8.3.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
MissingDelimiter.cpp
1
6/* SPDX-License-Identifier: CC0-1.0 */
7
8#include <sstream>
9
10#include "IString.h"
11#include "Message.h"
12
13using namespace std;
14
16 return "Missing delimiter [" + toString(d) + "]";
17}
18
19QString Isis::Message::MissingDelimiter(char d, const QString &near) {
20 QString message = "Missing delimiter [" + toString(d) + "] at or near [";
21
22 if(near.size() <= 20) {
23 message += near + "]";
24 }
25 else {
26 message += near.mid(0, 20) + " ...]";
27 }
28
29 return message;
30}
QString MissingDelimiter(const char delimiter)
This error should be used when a delimiter is missing.
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
Definition IString.cpp:211
Namespace for the standard library.

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 02/24/2025 16:15:05