// -*- C++ -*- // //----------------------------------------------------------------------------- // // VTF Development Team // California Institute of Technology // (C) 2002 All Rights Reserved // // // //----------------------------------------------------------------------------- // // $Log: PyExceptions.h,v $ // Revision 1.1 2003/02/28 23:29:09 sameer // Added Python Bindings headers to TAU. // // Revision 1.1 2002/01/16 02:05:07 cummings // Original source and build procedure files for Python bindings of // TAU runtime API. These bindings allow you to do some rudimentary // things from the Python script, such as enable/disable all Tau // instrumentation, enable/disable a particular Tau profile group, // and dump or purge the current Tau statistics. Still to come are // bindings for creating and using Tau global timers and user events. // // #if !defined(pytau_exceptions_h) #define pytau_exceptions_h // Exceptions extern PyObject *pytau_badArgument; #endif // pytau_exceptions_h // version // $Id: PyExceptions.h,v 1.1 2003/02/28 23:29:09 sameer Exp $ // End of file