summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/Token_i.h
blob: d07fe366a5116cbf126367e4432a3d88ec2f43e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

#ifndef TOKEN_I_H
#define TOKEN_I_H

#include "Test_T.h"

// Go get ace/Token.h so that we know what an ACE_Token is.
#include "ace/Token.h"

/* Create a very simple derivative of our Test template.  All we have
   to do is provide our mutex choice and a name.
 */
class Token : public Test_T<ACE_Token>
{
public:
  Token (void): Test_T<ACE_Token> ("Token") {}
};

#endif /* TOKEN_I_H */