MLAPI_Error.h File Reference

#include <string>
#include <iostream>

Include dependency graph for MLAPI_Error.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.


Classes

struct  MLAPI::StackEntry

Namespaces

namespace  MLAPI
 MLAPI: Default namespace for all MLAPI objects and functions.

Defines

#define StackPush()
#define ML_THROW(str, val)

Typedefs

typedef struct MLAPI::StackEntry MLAPI::Entry

Functions

void MLAPI::StackPop ()
void MLAPI::StackPrint ()


Define Documentation

#define ML_THROW ( str,
val   ) 

Value:

{ \
  std::cerr << "ERROR: File " << __FILE__ << ", line " << __LINE__ << endl; \
  std::cerr << "ERROR: " << str << endl; \
  StackPrint(); \
  throw(val); \
  }

 
#define StackPush (  )