~ubuntu-branches/ubuntu/quantal/xbill/quantal

« back to all changes in this revision

Viewing changes to Library.h

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bridgett
  • Date: 2004-09-07 09:52:14 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040907095214-d0m46ojc8f7upuqm
Tags: 2.1-4
maintainer upload of NMU - many thanks Tollef (closes: #268885) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef LIBRARY_H
2
 
#define LIBRARY_H
3
 
 
4
 
#include "Picture.h"
5
 
#include "MCursor.h"
6
 
 
7
 
class Library {                 /* global structure of all OSes */
8
 
public:
9
 
        static const int WINGDOWS = 0;  /* OS 0 is wingdows */
10
 
        static const int OFF = -1;      /* OS -1 means the computer is off */
11
 
        static const int PC = 5;        /* OS >= PC means the OS is a PC OS */
12
 
        static const int NUM_OS = 9;    /* The number of OSes (not Wingdows) */
13
 
        int width, height;              /* size of OS picture*/
14
 
        Picture os[NUM_OS+1];           /* array of OS pictures*/
15
 
        MCursor cursor[NUM_OS+1];       /* array of OS cursors (drag/drop) */
16
 
        void load_pix();
17
 
};
18
 
 
19
 
#endif