libroadrunner C API
Macros
rrc_macros.h File Reference

roadRunner C wrappers 2012 More...

Go to the source code of this file.

Macros

#define start_try
 macro to open a try/catch statement More...
 
#define catch_bool_macro
 macro for catch statement in a routine returning a bool More...
 
#define catch_ptr_macro
 macro for catch statement in a routine returning a pointer More...
 
#define catch_int_macro
 macro for catch statement in a routine returning a positive integer More...
 
#define catch_double_macro
 macro for catch statement in a routine returning a real numbers More...
 
#define catch_void_macro
 macro for catch statement in a routine returning void More...
 

Detailed Description

roadRunner C wrappers 2012

Author
Totte Karlsson & Herbert M Sauro

<-----------------------------------------------------------— This file is part of cRoadRunner. See http://code.google.com/p/roadrunnerlib for more details.

Copyright (C) 2012-2013 University of Washington, Seattle, WA, USA

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

In plain english this means:

You CAN freely download and use this software, in whole or in part, for personal, company internal, or commercial purposes;

You CAN use the software in packages or distributions that you create.

You SHOULD include a copy of the license in any redistribution you may make;

You are NOT required include the source of software, or of any modifications you may have made to it, in any redistribution you may assemble that includes it.

YOU CANNOT:

redistribute any piece of this software without proper attribution;

Macro Definition Documentation

◆ catch_bool_macro

#define catch_bool_macro
Value:
} \
catch(exception& ex) \
{ \
stringstream msg; \
msg<<"RoadRunner exception: "<<ex.what()<<endl; \
setError(msg.str()); \
return false; \
}

macro for catch statement in a routine returning a bool

◆ catch_double_macro

#define catch_double_macro
Value:
} \
catch(exception& ex) \
{ \
stringstream msg; \
msg<<"RoadRunner exception: "<<ex.what()<<endl; \
setError(msg.str()); \
return -1; \
}

macro for catch statement in a routine returning a real numbers

◆ catch_int_macro

#define catch_int_macro
Value:
} \
catch(exception& ex) \
{ \
stringstream msg; \
msg<<"RoadRunner exception: "<<ex.what()<<endl; \
setError(msg.str()); \
return -1; \
}

macro for catch statement in a routine returning a positive integer

◆ catch_ptr_macro

#define catch_ptr_macro
Value:
} \
catch(exception& ex) \
{ \
stringstream msg; \
msg<<"RoadRunner exception: "<<ex.what()<<endl; \
setError(msg.str()); \
return NULL; \
}

macro for catch statement in a routine returning a pointer

◆ catch_void_macro

#define catch_void_macro
Value:
} \
catch(const exception& ex) \
{ \
stringstream msg; \
msg<<"RoadRunner exception: "<<ex.what()<<endl; \
setError(msg.str()); \
}

macro for catch statement in a routine returning void

◆ start_try

#define start_try
Value:
try \
{

macro to open a try/catch statement