A collection of public definitions and functions for convenience. More...
#include "FileCatalyst.hpp"
Classes | |
struct | fc::FileDetails |
A collection of file or directory properties returned when a directory listing has been requested. More... | |
Namespaces | |
fc | |
All of the FileCatalyst classes and objects are declared within the fc namespace. | |
Typedefs | |
typedef std::vector< std::string > | fc::StrVec |
Defined for convenience: a vector of text strings. More... | |
typedef std::map< std::string, std::string > | fc::StrMap |
Defined for convenience: an ordered map where both the key and the value are text strings. More... | |
typedef std::set< std::string > | fc::StrSet |
Defined for convenience: an ordered set of text strings. More... | |
typedef std::vector< FileDetails > | fc::FDVec |
A std::vector of fc::FileDetails. More... | |
Functions | |
const StrMap & | fc::emptyMap (void) |
Function that always returns an empty map. Used internally by FC++. More... | |
std::string | fc::baseVersionStr (void) |
Return a simple version string. More... | |
std::string | fc::libfcVersionStr (void) |
Return the version string of the FC++ library. More... | |
int | fc::libfcBitSize (void) |
Determine if the library was built for a 32-bit or 64-bit platform. More... | |
std::string | fc::opensslVersionStr (void) |
Determine the version of OpenSSL used by FC++. More... | |
fc::FtpServerReplyCodes | fc::getCodeFromServerReply (const std::string &reply) |
Parse the given string and return the 3-digit FTP status code. More... | |
std::string | fc::getTextFromServerReply (const std::string &reply) |
Parse the given string and return only the last line of text following the 3-digit FTP status code. More... | |
A collection of public definitions and functions for convenience.