SASSY
0.0
Software Architecture Support System
|
The namespace for the Software Architecture Support System project. More...
Namespaces | |
cdi | |
The namespace for the Common Development Infrastructure. | |
cfi | |
The namespace for the Common Facilities Infrastructure components. | |
Classes | |
class | Path |
Manipulate path strings. More... | |
class | sxt |
An exception object with severity levels. More... | |
Typedefs | |
typedef void(* | AsyncTestEventFn )(const std::string &s) |
Pointer to function used to enqueue a test event. More... | |
Enumerations | |
enum | Severity { Emergency, Alert, Critical, Error, Code, Warning, Notice, Info, Debug } |
Severity levels for log messages. More... | |
Functions | |
void | trim (std::string &s) |
rip off leading and trailing white spaces More... | |
int | split (csr text, std::vector< std::string > &result) |
split a string into sub-strings at spaces More... | |
std::string | expandMacros (csr s) |
expand a string containing $ macros More... | |
void | defaultAsyncTestEvent (const std::string &s) |
Function used to enqueue a test event. More... | |
Variables | |
AsyncTestEventFn | asyncTestEvent = SASSY::defaultAsyncTestEvent |
Pointer to function used to enqueue a test event. | |
The namespace for the Software Architecture Support System project.
The namespace for the project.
typedef void(* SASSY::AsyncTestEventFn)(const std::string &s) |
Pointer to function used to enqueue a test event.
s | Identity of the event. |
enum SASSY::Severity |
Severity levels for log messages.
void SASSY::defaultAsyncTestEvent | ( | const std::string & | s | ) |
Function used to enqueue a test event.
The default function is defined in cfi/log.cpp and soes nothing
s | Identity of the event. |
string SASSY::expandMacros | ( | csr | s | ) |
expand a string containing $ macros
s | The string to expand. |
int SASSY::split | ( | csr | text, |
std::vector< std::string > & | result | ||
) |
split a string into sub-strings at spaces
text | the string to split |
result | the vector of sub strings |
void SASSY::trim | ( | std::string & | s | ) |
rip off leading and trailing white spaces
s | the string to trim |