You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
431 B
34 lines
431 B
//
|
|
// C++ Interface: txtmigrate
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Adam Pigg <adam@piggz.co.uk>, (C) 2004
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef KEXIMIGRATIONTXTMIGRATE_H
|
|
#define KEXIMIGRATIONTXTMIGRATE_H
|
|
|
|
#include <keximigrate.h>
|
|
|
|
namespace KexiMigration {
|
|
|
|
/**
|
|
@author Adam Pigg
|
|
*/
|
|
class TxtMigrate : public KexiMigrate
|
|
{
|
|
public:
|
|
TxtMigrate();
|
|
|
|
~TxtMigrate();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|