SoPlex Doxygen Documentation
tracemethod.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 
17 /**@file timer.h
18  * @brief TraceMethod class.
19  */
20 
21 #ifndef _TRACEMETHOD_H_
22 #define _TRACEMETHOD_H_
23 
24 
25 #include <iostream>
26 
27 
28 #define FILE_NAME_COL 60
29 
30 namespace soplex
31 {
32 
33 /**@class TraceMethod
34  @brief Helper class to trace the calling of methods.
35 
36  Prints out a message with the current filename and line to indicate
37  that some method has been called.
38 */
40 {
41 private:
42 
43  //------------------------------------
44  /**@name Data */
45  //@{
46  /// the current indentation
47  static int s_indent;
48  //@}
49 
50 public:
51 
52  //------------------------------------
53  /**@name Construction / destruction */
54  //@{
55  /// constructor
56  TraceMethod(const char* s, const char* file, int line );
57 
58  /// destructor
59  virtual ~TraceMethod()
60  {
61  s_indent--;
62  }
63  //@}
64 };
65 
66 
67 }
68 
69 
70 #endif // _TRACEMETHOD_H_