(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
15 lines
162 B
C++
15 lines
162 B
C++
#ifndef SM_CALLBACK_H
|
|
#define SM_CALLBACK_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
class SM_Callback {
|
|
public:
|
|
virtual void do_me() = 0;
|
|
};
|
|
|
|
#endif
|
|
|