00001 // **************************************************************************** 00002 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org> 00003 // This file is part of the hk_mysqlclasses library. 00004 // This file may be distributed and/or modified under the terms of the 00005 // GNU Library Public License version 2 as published by the Free Software 00006 // Foundation and appearing in the file COPYING included in the 00007 // packaging of this file. 00008 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00009 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00010 // **************************************************************************** 00011 //$Revision: 1.3 $ 00012 00013 #ifndef HK_MYSQLVIEW 00014 #define HK_MYSQLVIEW 00015 #include "hk_mysqldatasource.h" 00016 00017 class hk_mysqldatabase; 00018 class hk_presentation; 00019 class hk_mysqlview : public hk_mysqldatasource 00020 { 00021 friend class hk_mysqldatabase; 00022 public: 00023 enum_datasourcetypes type() const; 00024 00025 protected: 00026 hk_mysqlview(hk_mysqldatabase* db,hk_presentation* p); 00027 virtual bool driver_specific_load_view(); 00028 virtual bool driver_specific_create_view_now(void); 00029 00030 private: 00031 }; 00032 #endif
1.5.0