summaryrefslogtreecommitdiff
path: root/ASNMP/asnmp/transaction_result.h
blob: 1c0472675eaa7c9c2bdc46f839e4f5169aa28cd5 (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
/* -*-C++-*- */
// $Id$
#ifndef TRANSACTION_RESULT_H_
#define TRANSACTION_RESULT_H_
// ============================================================================
//
// = LIBRARY
//    asnmp
//
// = FILENAME
//    transaction_result.h
//
// = DESCRIPTION
//  An object respresenting a request/reply operation between mgr/agent
//
// = AUTHOR
//    Michael R. MacFaden
//
// ============================================================================

class transaction;
class ACE_Export transaction_result
{
  public:
    virtual ~transaction_result();
    virtual void result(transaction * trans, int) = 0;
};

#endif