blob: 9d0dbfc40b8880d89eecd41073f037270f486024 (
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
|