~ubuntu-branches/ubuntu/raring/qgo/raring

« back to all changes in this revision

Viewing changes to src/parserdefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin A. Godisch
  • Date: 2005-01-01 23:07:10 UTC
  • Revision ID: james.westby@ubuntu.com-20050101230710-fhng6yidm47xlb2i
Tags: upstream-1.0.0-r2
ImportĀ upstreamĀ versionĀ 1.0.0-r2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * parserdefs.h
 
3
 */
 
4
 
 
5
#ifndef PARSERDEFS_H
 
6
#define PARSERDEFS_H
 
7
 
 
8
enum State { stateVarBegin, stateNode, stateVarEnd };
 
9
enum Property { moveBlack, moveWhite, editBlack, editWhite, editErase, comment, editMark, unknownProp, nodeName, timeLeft, openMoves, nextMove};
 
10
enum TimeSystem { none, absolute, byoyomi, canadian };
 
11
struct Position { int x, y; };
 
12
struct MoveNum {int n; };
 
13
 
 
14
#endif