summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.h
blob: 805a4d019eb7e430b06334ce3156d445c88c61fa (plain)
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
// $Id$

// ========================================================================
//
// = LIBRARY
//    orbsvcs
//
// = FILENAME
//    Log_Constraint_Visitors.h
//
// = AUTHOR
//    Pradeep Gore <pradeep@cs.wustl.edu>
//
// ========================================================================

#ifndef TAO_LOG_CONSTRAINT_VISITOR_H
#define TAO_LOG_CONSTRAINT_VISITOR_H

#include "orbsvcs/orbsvcs/Trader/Constraint_Visitors.h"
#include "orbsvcs/DsLogAdminC.h"

class TAO_Log_Constraint_Evaluator : public TAO_Constraint_Evaluator
{
 public:
  TAO_Log_Constraint_Evaluator (DsLogAdmin::LogRecord &rec);
  // Constructor.

  virtual int visit_property (TAO_Property_Constraint* literal);

 private:
  DsLogAdmin::LogRecord &rec_;
  // TAO_Property_Evaluator prop_eval_;
  // Utility with which to evaluate the properties of an offer, be
  // they dyanmic or static.
};

#endif /* TAO_LOG_CONSTRAINT_VISITOR_H */