File: datatypes.h

package info (click to toggle)
portabase 2.0%2Bgit20110117-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,692 kB
  • sloc: cpp: 32,047; sh: 2,675; ansic: 2,320; makefile: 343; xml: 20; python: 16; asm: 10
file content (41 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
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
41
/*
 * datatypes.h
 *
 * (c) 2002,2008 by Jeremy Bowman <jmbowman@alum.mit.edu>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

/** @file datatypes.h
 * Header file containing various data type declarations
 */

#ifndef DATATYPES_H
#define DATATYPES_H

#include <QList>

#define STRING 0
#define INTEGER 1
#define FLOAT 2
#define BOOLEAN 3
#define NOTE 4
#define DATE 5
#define TIME 6
#define CALC 7
#define SEQUENCE 8
#define IMAGE 9
#define LAST_TYPE 9

#define FIRST_ENUM 100

// default date and time codes
#define TODAY 0
#define NOW 0

typedef QList<int> IntList;

#endif