Synopsis - Cross-Reference

File: /src/Support/ErrorHandler.hh
 1//
 2// Copyright (C) 2004 Stefan Seefeld
 3// All rights reserved.
 4// Licensed to the public under the terms of the GNU LGPL (>= 2),
 5// see the file COPYING for details.
 6//
 7
 8#ifndef Synopsis_ErrorHandler_hh_
 9#define Synopsis_ErrorHandler_hh_
10
11#include <string>
12
13namespace Synopsis
14{
15
16struct ErrorHandler
17{
18  typedef void (*Callback)();
19  ErrorHandler(Callback = 0);
20  ~ErrorHandler();
21};
22
23}
24
25#endif