~ubuntu-branches/debian/sid/unixodbc/sid

« back to all changes in this revision

Viewing changes to DataManagerII/classSpecialColumns.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2004-10-15 03:07:52 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041015030752-dzw4vhxlgycz3woj
Tags: 2.2.4-11
Brown paper bag me: conflicts do not write themselves just because
you add a line to the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************
 
2
 *
 
3
 *
 
4
 **************************************************
 
5
 * This code was created by Peter Harvey @ CodeByDesign.
 
6
 * Released under GPL 18.FEB.99
 
7
 *
 
8
 * Contributions from...
 
9
 * -----------------------------------------------
 
10
 * Peter Harvey   - pharvey@codebydesign.com
 
11
 **************************************************/
 
12
#ifndef classSpecialColumns_included
 
13
#define classSpecialColumns_included
 
14
 
 
15
#include "classCanvas.h"
 
16
#include "classColumn.h"
 
17
#include <qstring.h>
 
18
#include <qptrlist.h>
 
19
#include <qlistview.h>
 
20
#include <sqlext.h>
 
21
 
 
22
class classSpecialColumns: public classNode
 
23
{
 
24
public:
 
25
   classSpecialColumns( QListViewItem *pParent, QListViewItem *pAfter, classCanvas *pCanvas, SQLHDBC hDbc, const char *pszTable = 0, const char *pszLibrary = 0 );
 
26
  ~classSpecialColumns() {}
 
27
 
 
28
   void setOpen( bool );
 
29
 
 
30
private:
 
31
  QList<classColumn>  listColumns;
 
32
  SQLHDBC             hDbc;
 
33
  QString             qsLibrary;
 
34
  QString             qsTable;
 
35
 
 
36
  void LoadColumns();
 
37
 
 
38
};
 
39
#endif
 
40