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.
21 lines
557 B
21 lines
557 B
15 years ago
|
#include <kgenericfactory.h>
|
||
|
|
||
|
#include "dummymeta.h"
|
||
|
|
||
|
K_EXPORT_COMPONENT_FACTORY( dummymeta, KGenericFactory<DummyMeta> )
|
||
|
|
||
14 years ago
|
DummyMeta::DummyMeta( TQObject *parent, const char *name,
|
||
|
const TQStringList &preferredItems )
|
||
15 years ago
|
: KFilePlugin( parent, name, preferredItems )
|
||
|
{
|
||
13 years ago
|
tqDebug("---- DummyMeta::DummyMeta: got %i preferred items.", preferredItems.count());
|
||
15 years ago
|
}
|
||
|
|
||
|
bool DummyMeta::readInfo( KFileMetaInfo::Internal & info )
|
||
|
{
|
||
13 years ago
|
tqDebug("#### DummyMeta:: readInfo: %s", info.path().latin1() );
|
||
15 years ago
|
return 0L;
|
||
|
}
|
||
|
|
||
|
#include "dummymeta.moc"
|