Prüfungsamt-Projekt
1.0.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### Prüfungsamt-Client #### 00004 // #### ============================ #### 00005 // #### #### 00006 // #### Datenbank-Monitor-Interface #### 00007 // #### #### 00008 // #### Version 1.00 -- 12. Juli 2000 #### 00009 // #### #### 00010 // #### Copyright (C) 2000 Thomas Dreibholz #### 00011 // #### Universität Bonn #### 00012 // #### EMail: dreibh@iem.uni-due.de #### 00013 // #### WWW: https://www.nntb.no/~dreibh #### 00014 // #### #### 00015 // ########################################################################## 00016 00017 00018 #ifndef SQL_MONITOR_INTERFACE_H 00019 #define SQL_MONITOR_INTERFACE_H 00020 00021 00022 #include "system.h" 00023 00024 00032 class SQLMonitorInterface 00033 { 00034 public: 00040 virtual void write(const char* string = "") = 0; 00041 }; 00042 00043 00044 #endif