68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
// Filename: dcKeywordList.h
|
|
// Created by: drose (25Jul05)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DCKEYWORDLIST_H
|
|
#define DCKEYWORDLIST_H
|
|
|
|
#include "dcbase.h"
|
|
|
|
class DCKeyword;
|
|
class HashGenerator;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DCKeywordList
|
|
// Description : This is a list of keywords (see DCKeyword) that may
|
|
// be set on a particular field.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_DIRECT DCKeywordList {
|
|
public:
|
|
DCKeywordList();
|
|
DCKeywordList(const DCKeywordList ©);
|
|
void operator = (const DCKeywordList ©);
|
|
~DCKeywordList();
|
|
|
|
PUBLISHED:
|
|
bool has_keyword(const string &name) const;
|
|
bool has_keyword(const DCKeyword *keyword) const;
|
|
int get_num_keywords() const;
|
|
const DCKeyword *get_keyword(int n) const;
|
|
const DCKeyword *get_keyword_by_name(const string &name) const;
|
|
|
|
bool compare_keywords(const DCKeywordList &other) const;
|
|
|
|
public:
|
|
void copy_keywords(const DCKeywordList &other);
|
|
|
|
bool add_keyword(const DCKeyword *keyword);
|
|
void clear_keywords();
|
|
|
|
void output_keywords(ostream &out) const;
|
|
void generate_hash(HashGenerator &hashgen) const;
|
|
|
|
private:
|
|
typedef pvector<const DCKeyword *> Keywords;
|
|
Keywords _keywords;
|
|
|
|
typedef pmap<string, const DCKeyword *> KeywordsByName;
|
|
KeywordsByName _keywords_by_name;
|
|
|
|
int _flags;
|
|
};
|
|
|
|
#endif
|