~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/archive_engine.h

  • Committer: Monty Taylor
  • Date: 2010-09-28 07:45:44 UTC
  • mto: (1799.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1800.
  • Revision ID: mordred@inaugust.com-20100928074544-s3ujnv6s8wro74l2
Added BSD copying file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
  You should have received a copy of the GNU General Public License
14
14
  along with this program; if not, write to the Free Software
15
 
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
15
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
16
16
 
17
17
#include "drizzled/field.h"
18
18
#include "drizzled/field/blob.h"
87
87
    return _mutex;
88
88
  }
89
89
 
90
 
  virtual drizzled::Cursor *create(drizzled::Table &table)
 
90
  virtual drizzled::Cursor *create(drizzled::TableShare &table)
91
91
  {
92
92
    return new ha_archive(*this, table);
93
93
  }
125
125
 
126
126
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
127
127
                             const drizzled::SchemaIdentifier &schema_identifier,
128
 
                             drizzled::TableIdentifier::vector &set_of_identifiers);
 
128
                             drizzled::TableIdentifiers &set_of_identifiers);
129
129
};
130
130
 
131
131
#endif /* PLUGIN_ARCHIVE_ARCHIVE_ENGINE_H */