summaryrefslogtreecommitdiff
path: root/ASNMP/asnmp/transaction_result.h
blob: 9ea94c60e8e77b3cd614ebf7830e208ad1a9e5e4 (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
/* -*-C++-*- */
#ifndef TRANSACTION_RESULT_H_
#define TRANSACTION_RESULT_H_
//=============================================================================
/**
 *  @file    transaction_result.h
 *
 *  $Id$
 *
 *  An object respresenting a request/reply operation between mgr/agent
 *
 *
 *  @author Michael R. MacFaden
 */
//=============================================================================


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

#endif