• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • TDevelop Catalog Library
 

TDevelop Catalog Library

  • lib
  • catalog
catalog.h
Go to the documentation of this file.
1 /* This file is part of TDevelop
2  Copyright (C) 2003 Roberto Raggi <roberto@kdevelop.org>
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Library General Public
6  License as published by the Free Software Foundation; either
7  version 2 of the License, or (at your option) any later version.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 
20 #ifndef CATALOG_H
21 #define CATALOG_H
22 
23 #include <tqvaluelist.h>
24 #include <tqpair.h>
25 #include <tqvariant.h>
26 
27 
28 #include "tag.h"
42 class Catalog
43 {
44 public:
45  typedef TQPair<TQCString, TQVariant> QueryArgument;
46 
47 public:
48  Catalog();
49  virtual ~Catalog();
50 
51  bool isValid() const;
52  TQString dbName() const;
53 
54  bool enabled() const;
55  void setEnabled( bool en );
56 
57  virtual void open( const TQString& dbName );
58  virtual void close();
59  virtual void sync();
60 
61  TQValueList<TQCString> indexList() const;
62  void addIndex( const TQCString& name );
63 
64  void addItem( Tag& tag );
65 
66  Tag getItemById( const TQCString& id );
67  TQValueList<Tag> query( const TQValueList<QueryArgument>& args );
68 
69  TQCString generateId();
70 
71 private:
72  class _Catalog_Private* d;
73 
74 private:
75  Catalog( const Catalog& source );
76  void operator = ( const Catalog& source );
77 };
78 
79 
80 #endif
Catalog::addIndex
void addIndex(const TQCString &name)
Definition: catalog.cpp:175
Catalog
Catalog objects represent separate symbol databases.
Definition: catalog.h:42

TDevelop Catalog Library

Skip menu "TDevelop Catalog Library"
  • Main Page
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

TDevelop Catalog Library

Skip menu "TDevelop Catalog Library"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for TDevelop Catalog Library by doxygen 1.8.13
This website is maintained by Timothy Pearson.