summaryrefslogtreecommitdiff
path: root/docs/tutorials/010/block.h
blob: 662c3c1e536606b456a695b3c88c25ba15ab048f (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

// $Id$

#ifndef BLOCK_H
#define BLOCK_H

#include "ace/Message_Block.h"

/*
   This simple ACE_Message_Block derivative will inform us of it's construction 
   and destruction.  We'll use this to assure ourselves that we don't have any
   memory leaks.  In a real application, of course, this isn't necessary.
 */
class Block : public ACE_Message_Block
{
public:
  Block (void)
  {
    ACE_DEBUG ((LM_DEBUG, "(%P|%t) Block ctor 0x%x\n", (void *) this));
  }

  Block (size_t size)
   : ACE_Message_Block (size)
  {
    ACE_DEBUG ((LM_DEBUG, "(%P|%t) Block ctor 0x%x\n", (void *) this));
  }

  virtual ~ Block (void)
  {
    ACE_DEBUG ((LM_DEBUG, "(%P|%t) Block dtor 0x%x\n", (void *) this));
  }
};

#endif