~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to src/sd/bv/relevantset.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _RELEVANTSET_H
 
2
#define _RELEVANTSET_H
 
3
 
 
4
#include "bool.h"
 
5
#include "llist.h"
 
6
#include "lstring.h"
 
7
#include "eventset.h"
 
8
#include <string.h>
 
9
 
 
10
class RelevantSet : public EventSet {
 
11
        protected:
 
12
                unsigned char RelevantFlag[(MAX_EVENTS + 7) / 8];
 
13
        public:
 
14
                RelevantSet();
 
15
                ~RelevantSet() { };
 
16
                unsigned add(const string &event);
 
17
                void print();
 
18
                void SetRelevant(const EventSet &relev);
 
19
                string GetGuards() const;
 
20
};
 
21
 
 
22
#endif