Isis 3 Programmer Reference
|
#include "IString.h"
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <stdio.h>
#include <string>
#include <QMap>
#include <QObject>
#include "IException.h"
#include "SpecialPixel.h"
Go to the source code of this file.
Namespaces | |
Isis | |
Namespace for ISIS/Bullet specific routines. | |
Functions | |
bool | Isis::toBool (const QString &string) |
Global function to convert from a string to a boolean. More... | |
int | Isis::toInt (const QString &string) |
Global function to convert from a string to an integer. More... | |
BigInt | Isis::toBigInt (const QString &string) |
Global function to convert from a string to a "big" integer. More... | |
double | Isis::toDouble (const QString &string) |
Global function to convert from a string to a double. More... | |
QString | Isis::toString (bool boolToConvert) |
Global function to convert a boolean to a string. More... | |
QString | Isis::toString (char charToConvert) |
Global function to convert a character to a string. More... | |
QString | Isis::toString (const int &intToConvert) |
Global function to convert an integer to a string. More... | |
QString | Isis::toString (const unsigned int &intToConvert) |
Global function to convert an unsigned integer to a string. More... | |
QString | Isis::toString (const BigInt &intToConvert) |
Global function to convert a big integer to a string. More... | |
QString | Isis::toString (double doubleToConvert, int precision) |
Global function to convert a double to a string with the given precision (significant figures). More... | |
static bool | Isis::nocase_compare (const char c1, const char c2) |
Compare two characters without regard to case. More... | |
std::ostream & | Isis::operator<< (std::ostream &outputStream, const QString &string) |
Print an ASCII representation of the given QString to a stl stream (most commonly cout, cerr). More... | |
std::ostream & | Isis::operator<< (std::ostream &outputStream, const QStringRef &string) |
Print an ASCII representation of the given QStringRef to a stl stream (most commonly cout, cerr). More... | |
Unless noted otherwise, the portions of Isis written by the USGS are public domain. See individual third-party library and package descriptions for intellectual property information,user agreements, and related information.
Although Isis has been used by the USGS, no warranty, expressed or implied, is made by the USGS as to the accuracy and functioning of such software and related material nor shall the fact of distribution constitute any such warranty, and no responsibility is assumed by the USGS in connection therewith.
For additional information, launch $ISISROOT/doc//documents/Disclaimers/Disclaimers.html in a browser or see the Privacy & Disclaimers page on the Isis website, http://isis.astrogeology.usgs.gov, and the USGS privacy and disclaimers on http://www.usgs.gov/privacy.html.
Definition in file IString.cpp.