blob: 20568a96ab4ca906f62033dd90ee8e721ce62c0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef COLLECTIONFACTORY_H
#define COLLECTIONFACTORY_H
#include "datavectors.h"
#include <tqmap.h>
namespace Tellico {
typedef TQMap<int, TQString> CollectionNameMap;
/**
* A factory class for dealing with the different types of collections.
*
* @author Robby Stephenson
*/
class CollectionFactory {
public:
static Data::CollPtr collection(int type, bool addFields);
static Data::CollPtr collection(const TQString& typeName, bool addFields);
static CollectionNameMap nameMap();
static TQString typeName(int type);
static bool isDefaultField(int type, const TQString& name);
};
} // end namespace
#endif
|